Beispiel #1
0
 /// <summary>
 /// Checks whether left and right array sequentially equal
 /// </summary>
 /// <returns>True if the arrays are sequantially equal</returns>
 public bool IsEqual()
 {
     return(LeftArray.SequenceEqual(RightArray));
 }