private bool Equals(Face other)
 {
     return X == other.X && Y == other.Y && Width == other.Width && Height == other.Height && string.Equals(Name, other.Name) && Equals(Age, other.Age);
 }
Beispiel #2
0
 private bool Equals([NotNull] Face other)
 {
     return(X == other.X && Y == other.Y && Width == other.Width && Height == other.Height && string.Equals(Name, other.Name) && Equals(Age, other.Age));
 }