0
我需要比較目前的應用程式版本和市場應用的版本。檢查從市場上的應用程序版本的Windows Phone 8
if (CurrentAppVersion() < MarketPlaceAppVersion()) {
MessageBox.Show("You need to update your app");
}
private int CurrentAppVersion() {
return 0;
}
private int MarketPlaceAppVersion() {
return 0;
}
我有一個this link檢查當前的應用程序版本。我如何獲得市場應用程序版本。
檢查此:http://developer.nokia.com/community/wiki/Checking_for_updates_from_inside_a_Windows_Phone_app –