示例#1
0
 /// <summary>
 /// Returns a hash-code based on the current value of this object.
 /// </summary>
 public override int GetHashCode()
 {
     return
         ((Description ?? String.Empty).GetHashCode() ^
          (Includes != null ? Includes.GetHashCode() : 0) ^
          (Excludes != null ? Excludes.GetHashCode() : 0));
 }