Beispiel #1
0
 public static bool Equals(IntSize3 s1, IntSize3 s2)
 {
     return
         (s1.Width == s2.Width &&
          s1.Height == s2.Height &&
          s1.Depth == s2.Depth);
 }
Beispiel #2
0
 public bool Equals(IntSize3 other)
 {
     return(Equals(this, other));
 }