How to get the mobile number and work number from iPhone contacts using MonoTouch c#? I used this code,
ABMultiValue<String> phoneMV = person.GetPhones();
String[] phoneval = phoneMV.GetValues();
for(int i = 0; i< phoneval.Length; i++) {
Console.WriteLine(phoneval[i]);
}
But it prints all value of contact numbers. How to get particular attributes from contacts? For example i need mobile and work number, home and work email id like that. I don't want all values. How to achieve this?