我正在編寫通用應用程序(WinStore 8.1 + WinPhone 8.1)。對於我的要求,我需要檢索所有設備聯繫人。在WinPhone上沒問題 - 這裏是代碼我是如何做到的:如何使用c檢索Windows應用商店應用程序中的所有聯繫人#
var contactStore = await ContactManager.RequestStoreAsync();
var contacts = await contactStore.FindContactsAsync();
但是如何在WinStore應用程序中做到這一點?