Example #1
0
 public bool Equals(WithArray other)
 {
     if (ReferenceEquals(null, other))
     {
         return(false);
     }
     if (ReferenceEquals(this, other))
     {
         return(true);
     }
     return(FixedLegthArray.ElementsEqual(other.FixedLegthArray) && VarLength == other.VarLength && VarLegthArray.ElementsEqual(other.VarLegthArray));
 }