IKVM.Reflection.Type.GetHashCode C# (CSharp) Метод

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

public GetHashCode ( ) : int
Результат int
        public override int GetHashCode()
        {
            Type type = this.UnderlyingSystemType;
            return ReferenceEquals(type, this) ? base.GetHashCode() : type.GetHashCode();
        }