1. 填空: (1)面向对象的语言具有___继承性、封装性、多态性。 (2)能用foreach遍历访问的对象需要实现 IEnumerable接口或声明GetEnumerator 方法的类型 (3)列举ADO.net中的五个主要对象 Command、Connection、DataSet、DataAdapter、DataReader。 2. 不定项选择: (1) 以下叙述正确的是: A. 接口中可以有虚方法。 B. 一个类可以实现多个接口。 C. 接口不能被实例化。 D. 接口中可以包含已实现的方
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.WriteL