Exemple #1
0
 /// <summary>
 /// Determines if two Birthday objects are equal.
 /// </summary>
 /// <param name="other">The other phone number.</param>
 /// <returns><c>true</c> if equal, <c>false</c> otherwise.</returns>
 public bool Equals(Birthday other)
 {
     return(this.birthDate.Equals(other.birthDate));
 }
Exemple #2
0
 /// <summary>
 /// Determines if two Birthday objects are equal.
 /// </summary>
 /// <param name="other">The other phone number.</param>
 /// <returns><c>true</c> if equal, <c>false</c> otherwise.</returns>
 public bool Equals(Birthday other)
 {
     return this.birthDate.Equals(other.birthDate);
 }