A.public delegate int PowerDeviceOn(bool result, DateTime autoPowerOff);
B.public delegate bool PowerDeviceOn(object sender, EventArgs autoPowerOff);
C.public delegate void PowerDeviceOn(DateTime autoPowerOff);
D.public delegate bool PowerDeviceOn(DateTime autoPowerOff);
第1题:
A.public delegate int PowerDeviceOn(bool, DateTime);
B.public delegate bool PowerDeviceOn(Object, EventArgs);
C.public delegate void PowerDeviceOn(DateTime);
D.public delegate bool PowerDeviceOn(DateTime);
第2题:
A.
B.
C.
D.
第3题:
A.创建一个类支持DLL函数,然后使用托管代码创建原型方法。
B.使用COM注册您的程序集,然后从COM中参考您的托管代码。
C.为托管代码创建一个类库。
D.导入一个类库。然后创建COM对象的实例
第4题:
A.
B.
C.
D.
第5题:
A.foreach (object e in q) { q.Dequeue();}
B.foreach (object e in q) { Enqueue(null);}
C.q.Clear();
D.q.Dequeue();
第6题:
A.A
B.B
C.C
D.D
第7题:
A.
B.
C.
D.
第8题:
A.A
B.B
C.C
D.D
第9题:
A.
B.
C.
D.