コード例 #1
0
ファイル: LocalDataTest.cs プロジェクト: BriscoLargg/Tools
 public bool IsEqual(NestedLocalData other) =>
 Math.Abs(TestFloat - other.TestFloat) < 0.01f && TestString == other.TestString;
コード例 #2
0
 public bool IsEqual(NestedLocalData other)
 {
     return(TestFloat == other.TestFloat && TestString == other.TestString);
 }