ABAddressBook mybook = new ABAddressBook();
ABPerson[] allPeople = mybook.GetPeople();
foreach(ABPerson thisPerson in allPeople){
if(thisPerson.GetPhones() != null)
ABMultiValue<string> myMultiPhone = thisPerson.GetPhones();
}
}
我的应用程序中有以前的代码。使用Monotouch build 1.4我的应用程序出错了。如果没有与联系人关联的电话号码,我会收到空错误。有没有人知道如何检查null?
答案 0 :(得分:1)
我最终将代码放入try catch中。哦,它有效。