System.Text.ISCIIEncoding.GetHashCode C# (CSharp) Method

GetHashCode() public method

public GetHashCode ( ) : int
return int
        public override int GetHashCode()
        {
            //Not great distribution, but this is relatively unlikely to be used as the key in a hashtable.
            return _defaultCodePage + EncoderFallback.GetHashCode() + DecoderFallback.GetHashCode();
        }