在 windows phone “App.xaml.cs” 文件中包含以下方法来识别应用程序是否是 Windows Phone 应用程序中的试用版。
private void Application_Launching(object sender, LaunchingEventArgs e)
{
var license = new Microsoft.Phone.Marketplace.LicenseInformation();
IsTrial = license.IsTrial(); }
这里 IsTrail 是返回 true 或 false 的属性。iOS 是否有任何方法可以检测精简版或付费版?