Machine.Specifications.Runner.ContextInfo.GetHashCode C# (CSharp) Метод

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

public GetHashCode ( ) : int
Результат int
        public override int GetHashCode()
        {
            unchecked
            {
                int hash = 17;
                hash = hash * 29 + (Name != null ? Name.GetHashCode() : 0);
                hash = hash * 29 + (Concern != null ? Concern.GetHashCode() : 0);
                hash = hash * 29 + (TypeName != null ? TypeName.GetHashCode() : 0);
                hash = hash * 29 + (Namespace != null ? Namespace.GetHashCode() : 0);
                hash = hash * 29 + (AssemblyName != null ? AssemblyName.GetHashCode() : 0);

                return hash;
            }
        }
    }