Ramone.MediaType.Equals C# (CSharp) Method

Equals() public method

public Equals ( object obj ) : bool
obj object
return bool
        public override bool Equals(object obj)
        {
            MediaType other = obj as MediaType;
              if (other == null)
            return false;

              // Call overloaded == operator
              return this == other;
        }