Exemplo n.º 1
0
 public HumanName GetHumanName(string family, string given, string suffix)
 {
     HumanName humanName = new HumanName();
     humanName.family = new string[] { family };
     humanName.given = new string[] { given };
     humanName.suffix = new string[] { suffix };
     return humanName;
 }