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

Equals() public method

public Equals ( Object value ) : bool
value Object
return bool
        public override bool Equals(Object value)
        {
            InternalDecoderBestFitFallback that = value as InternalDecoderBestFitFallback;
            if (that != null)
            {
                return (encoding.CodePage == that.encoding.CodePage);
            }
            return (false);
        }