在ADO.NET中,执行数据库的某个存储过程,则至少需要创建________并设置它们的属性,调用合适的方法:(2分)
A. 一个Connection 对象和一个Command 对象
B. 一个Connection 对象和DataSet 对象
C. 一个Command 对象和一个DataSet 对象
D. 一个Command 对象和一个DataAdapter 对象
查看答案
类MyClass中,下列哪条语句定义了一个只读的属性Count?(2分)
A. private int Count;
B. private int count; public int Count{ get{return count;} }
C. public readonly int Count;
D. public readonly int Count { get{ return count;} set{count = value;} }
在命令行下使用csc命令编译C#源程序时,可使用_________参数来说明生成Windows可执行文件。(2分)
A. /target:exe
B. /target:winexe
C. /target:library
D. /target:module
在编写ASP.NET页面时,若希望在每次页面载入时执行某个操作,则应将相应代码写入_______事件处理程序中。(2分)
A. 页面的Load
B. 页面的init
C. 页面的PreRender
D. 页面的Disposed 消息
.NetFrameWork将()定义为一组规则,所有.NET语言都应该遵循次规则才能创建可以与其他语言互操作的应用程序。(2分)
A. CTS
B. CLS
CLR
D. CSL