我在我的项目中使用第三方调度程序 以下是示例http://scheduler-net.com/docs/simple_.net_application_with_scheduler.html
public ActionResult Index()
{
var scheduler = new DHXScheduler(this);
scheduler.LoadData = true;
scheduler.EnableDataprocessor = true;
return View(scheduler);
}
如何将“this”替换为实例名称?
答案 0 :(得分:0)
如果我理解你的问题,你可以用这种方式定义一个构造函数:
public MyConstructor()
{
MyInstance = this;
}
比使用MyInstance
代替this
。
希望这有帮助。