System.Text.ISCIIEncoding.GetHashCode C# (CSharp) Метод

GetHashCode() публичный Метод

public GetHashCode ( ) : int
Результат 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();
        }