Exemplo n.º 1
0
 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);
 }
Exemplo n.º 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));
 }