自测试卷2.doc13.DataReader对象与DataSet对象有何区别? 14.线程在C#中使用什么类表示你在什么情况下会考虑程序中使用线程?
5.如果要将一个方法定义为无返回值类型的方法,则需要使用什么关键字? 6.下列代码中x的输出结果是___________。 private int Add(ref int x, int y) { x = x + y; return x; } static void Main(string[] args) { Program pro = new Program(); int x = 30; int y = 40; Console.WriteLine(pro.Add(ref x, y)); Console.WriteLine(x);
暂无评论