Monotouch ABAdressBook GetPhones 检查空值

发布于 2024-08-16 08:26:36 字数 385 浏览 5 评论 0原文

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 吗?

ABAddressBook mybook = new ABAddressBook();
ABPerson[] allPeople =  mybook.GetPeople();
foreach(ABPerson thisPerson in allPeople){

      if(thisPerson.GetPhones() != null)
             ABMultiValue<string> myMultiPhone = thisPerson.GetPhones();

      }
}

I have the previous code in my application. With Monotouch build 1.4 my application errors out. If there is no phone number associated with a contact, I get a null error. Does anyone have any idea how to check for null?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

流心雨 2024-08-23 08:26:36

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

I ended up putting the code in a try catch. Oh well, it works.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文