Other libraries allow you to do something like this...
var phoneFax = new vCard.vTelephone();
phoneFax.Location = vCard.vLocations.WORK;
phoneFax.Type = vCard.vPhoneTypes.FAX;
phoneFax.TelephoneNumber = contact.FaxNumber;
vc.Telephones.Add(phoneFax);
Producing output like TEL;WORK;FAX:555-555-5555
This library doesn't allow for that without doing something custom...
Other libraries allow you to do something like this...
Producing output like TEL;WORK;FAX:555-555-5555
This library doesn't allow for that without doing something custom...