【发布时间】:2014-02-06 10:54:43
【问题描述】:
我需要比较当前应用版本和市场应用版本。
if (CurrentAppVersion() < MarketPlaceAppVersion()) {
MessageBox.Show("You need to update your app");
}
private int CurrentAppVersion() {
return 0;
}
private int MarketPlaceAppVersion() {
return 0;
}
我有一个this link 来检查当前的应用程序版本。如何获取市场应用版本。
【问题讨论】:
标签: c# windows-phone-8