我需要比较当前的应用版本和市场应用版本。
if (CurrentAppVersion() < MarketPlaceAppVersion()) {
MessageBox.Show("You need to update your app");
}
private int CurrentAppVersion() {
return 0;
}
private int MarketPlaceAppVersion() {
return 0;
}
我有一个this link来查看当前的应用版本。我怎样才能获得市场应用版本。
答案 0 :(得分:0)
我自己没有使用过这个功能,但我在一个名为cimbalino的开源工具包中看到过这个问题,你可以在http://cimbalino.org/找到它
其来源可在https://github.com/Cimbalino/Cimbalino-Phone-Toolkit
的github上找到以下诺基亚开发者帖子描述了它的实际工作原理 http://developer.nokia.com/community/wiki/Checking_for_updates_from_inside_a_Windows_Phone_app