私はこの問題に遭遇しました.私はWP8アプリケーションを持っていて、WP7をサポートしたいので、コードをコピーして貼り付けています.
Predicate<Contact> contactFinder = (Contact p) => { return p.Id == contact.Id; };
MyContactsList.Contacts.Exists(contactFinder) != true
メソッド .Exists() は WP7 に存在しません。回避策はありますか? または、すべての要素を調べて ID を確認する必要がありますか? お気に入り:
foreach ( Contact a in MyContactsList.Contacts )
{
if (a.id!=id)
enter code here
}
約1400件以上の連絡先があるため、システムがハングアップします...