Esempio n. 1
0
 public FullName(Name familyName, GivenNames givenNames = null)
 {
     Contract.Requires(familyName != null);
     FamilyName = familyName;
     GivenNames = givenNames;
 }
Esempio n. 2
0
 private bool Equals(Name other)
 {
     return string.Equals(this._name, other._name, StringComparison.InvariantCultureIgnoreCase);
 }