zeqk
1/11/2018 - 3:41 AM

Hide System.Object C# methods

Hide System.Object C# methods

#region Hide System.Object inherited methods

/// <summary>
/// Determines whether the specified <see cref="T:System.Object"/> is equal to the current <see cref="T:System.Object"/>.
/// </summary>
/// <returns>
/// true if the specified <see cref="T:System.Object"/> is equal to the current <see cref="T:System.Object"/>; otherwise, false.
/// </returns>
/// <param name="obj">The <see cref="T:System.Object"/> to compare with the current <see cref="T:System.Object"/>. </param><filterpriority>2</filterpriority>
[EditorBrowsable(EditorBrowsableState.Never)]
public override bool Equals(object obj)
{
    return base.Equals(obj);
}

/// <summary>
/// Serves as a hash function for a particular type. 
/// </summary>
/// <returns>
/// A hash code for the current <see cref="T:System.Object"/>.
/// </returns>
/// <filterpriority>2</filterpriority>
[EditorBrowsable(EditorBrowsableState.Never)]
public override int GetHashCode()
{
    return base.GetHashCode();
}

#pragma warning disable 0108
[EditorBrowsable(EditorBrowsableState.Never)]
public Type GetType()
{
    return base.GetType();
}
#pragma warning restore 0108

/// <summary>
/// Returns a <see cref="T:System.String"/> that represents the current <see cref="T:System.Object"/>.
/// </summary>
/// <returns>
/// A <see cref="T:System.String"/> that represents the current <see cref="T:System.Object"/>.
/// </returns>
/// <filterpriority>2</filterpriority>
[EditorBrowsable(EditorBrowsableState.Never)]
public override string ToString()
{
    return base.ToString();
}

#endregion