Esempio n. 1
0
 public bool IsEqual(NestedLocalData other) =>
 Math.Abs(TestFloat - other.TestFloat) < 0.01f && TestString == other.TestString;
Esempio n. 2
0
 public bool IsEqual(NestedLocalData other)
 {
     return(TestFloat == other.TestFloat && TestString == other.TestString);
 }