Monotouch ABAdressBook GetPhones检查无效

时间:2009-12-24 06:47:34

标签: c# iphone null xamarin.ios abaddressbook

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?

1 个答案:

答案 0 :(得分:1)

我最终将代码放入try catch中。哦,它有效。