get windows phone user accounts
问题 I'm trying to get windows phone user accounts (live, facebook, twitter, linkedin...) in c# for windows phone, so i found this: http://msdn.microsoft.com/en-us/library/windowsphone/develop/microsoft.phone.userdata.account(v=vs.105).aspx and I wrote this code: public MainPage() { InitializeComponent(); Account account = new Account(); account.Kind = StorageKind.Facebook; MessageBox.Show(account.Kind.ToString()); account.Name = EmailAddressKind.Personal.ToString(); MessageBox.Show(account.Name);