コード例 #1
0
ファイル: Token.cs プロジェクト: hardin253874/Platform
        /// <summary>
        /// Returns a hash code for this instance.
        /// </summary>
        public override int GetHashCode()
        {
            unchecked
            {
                int hash = 17;

                if (SourceNode != null)
                {
                    hash = hash * 92821 + SourceNode.GetHashCode( );
                }

                hash = hash * 92821 + IsClose.GetHashCode( );

                return(hash);
            }
        }
コード例 #2
0
ファイル: Edge.cs プロジェクト: Arasz/Optimization-techniques
 public override int GetHashCode() => (SourceNode.GetHashCode() * 17 + TargetNode.GetHashCode()) * 17 + Weight.GetHashCode();
コード例 #3
0
 public override int GetHashCode()
 {
     return(SourceNode.GetHashCode() + 31 * EventType.GetHashCode());
 }