예제 #1
0
파일: Arrays.cs 프로젝트: lanicon/nesper
 public static bool DeepEquals(
     Array left,
     Array right)
 {
     return(CompatExtensions.DeepEquals(left, right));
 }
예제 #2
0
파일: Pair.cs 프로젝트: lanicon/nesper
 /// <summary>
 /// Serves as a hash function for a particular type.
 /// </summary>
 /// <returns>
 /// A hash code for the current <see cref="T:System.Object"></see>.
 /// </returns>
 public override int GetHashCode()
 {
     return(CompatExtensions.HashAll <object>(First, Second));
 }