コード例 #1
0
ファイル: SectionToken.cs プロジェクト: wizofaus/Stubble
 /// <summary>
 /// Gets the hash code for the tag
 /// </summary>
 /// <returns>The hashcode</returns>
 public override int GetHashCode()
 {
     unchecked
     {
         var hashCode = base.GetHashCode();
         hashCode = (hashCode * 397) ^ StartPosition;
         hashCode = (hashCode * 397) ^ EndPosition;
         hashCode = (hashCode * 397) ^ (SectionName?.GetHashCode() ?? 0);
         return(hashCode);
     }
 }