猿问
回到首页
个人中心
反馈问题
注册登录
下载APP
首页
课程
实战
体系课
手记
专栏
慕课教程
控制台程序怎么接受window 计划里面的程序啊
针对一个程序,新建一个计划,计划里面有多个操作,每个操作都有参数。
以时间的方法触发执行,就是执行不了啊。求解!!
Smart猫小萌
浏览 301
回答 2
2回答
白衣染霜花
参数是直接可由args 获取就行了。对控件台应用程序不熟悉啊。class Program{static void Main(string[] args){string para1=(string)args.GetValue(0);}}
0
0
0
慕雪6442864
具体什么错误,把代码贴出来。先参考一下我这:class Parent { List<Child> _children = new List<Child>(); public Parent() { _children.Add(new Child()); _children.Add(new Child()); _children.Add(new Child()); // Add handler to the child event foreach (Child child in _children) { child.TimerFired += Child_TimerFired; } } private void Child_TimerFired(object sender, EventArgs e) { // One of the child timers fired // sender is a reference to the child that fired the event } }class Child { public event EventHandler TimerFired; protected void OnTimerFired(EventArgs e) { if (TimerFired != null) { TimerFired(this, e); } } // This is the event that is fired by your current timer mechanism private void HandleTimerTick(...) { OnTimerFired(EventArgs.Empty); } }
0
0
0
打开App,查看更多内容
随时随地看视频
慕课网APP
相关分类
.NET
.net 中 字符串含有超链接,如何给超链接自动加上a标签?
1 回答
请问.net 中用jquery传值安全吗?
2 回答
继续浏览精彩内容
慕课网APP
程序员的梦工厂
打开
继续