1

我在我的项目中使用第三方调度程序这是示例,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”?

4

1 回答 1

0

如果我正确理解您的问题,您可以这样定义构造函数:

public MyConstructor()
{
   MyInstance = this;
}

比你可以使用MyInstance而不是this.

希望这可以帮助。

于 2013-05-09T13:29:45.540 回答