Mono.VisualC.Interop.Util.BasicSignature.GetHashCode C# (CSharp) Метод

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

public GetHashCode ( ) : int
Результат int
        public override int GetHashCode()
        {
            unchecked {
                return CallingConvention.GetHashCode () ^
                      (ParameterTypes != null? ParameterTypes.SequenceHashCode () : 0) ^
                      ReturnType.GetHashCode ();
            }
        }