System.Text.DecoderReplacementFallback.Equals C# (CSharp) Method

Equals() public method

public Equals ( Object value ) : bool
value Object
return bool
        public override bool Equals(Object value)
        {
            DecoderReplacementFallback that = value as DecoderReplacementFallback;
            if (that != null)
            {
                return (this.strDefault == that.strDefault);
            }
            return (false);
        }