See Also: ABAddressFormatting Members
This class works with the Foundation.NSDictionarys that are returned by the AddressBook.ABPerson.GetAddresses method, as shown in the following example:
C# Example
NSError err;
var ab = ABAddressBook.Create(out err);
if(err == null && ABAddressBook.GetAuthorizationStatus() == ABAuthorizationStatus.Authorized)
{
var person = ab.GetPeople()[0];
var address = person.GetAddresses()[0];
var formattedAddress = ABAddressFormatting.ToString(address.Value, false);
}