我正在使用Intellilock软件为我的C#应用程序创建许可证文件。
if (mySetting.AppFunction.GetLicenseStatus() == "2")
{
this.lblApplicationType.Text = "Valid Before: " + OEM.GetCurrentOEM().DueDate.ToLongDateString();
if (DateTime.Now.Date >= OEM.GetCurrentOEM().DueDate)
{
AppMessage.ShowMessage("License expired. Please contact administrator.");
}
else
{
AppMessage.ShowMessage("Welcome");
}
}
这是我遇到问题的代码。 mySetting.AppFunction.GetLicenseStatus()1st 返回无值。因此我的检查未正确执行。我正在使用intellilock.dll进行验证。请帮我解决这个问题。