求各位大哥哥大姐姐帮帮我这个菜鸟吧!
class Student//新建一个学生类,包含学生的信息{
public Student(string name, string no)
{
this.Name = name;
this.No = no;
}
public string Name { get; set; }//姓名
public string No { get; set; }//学号
}
class Students : List<Student>//CollectionBase这是一个集合,为了方便的操作,当然也可以用泛型List<Student>
{
public Student this[int index] { get { return (Student)List[index]; } set { List[index] = value; } } //索引
public void Add(Student value)
{
this.Add(value);
}
表情后面的list错了,请问咋个改安,求解
错误 1 使用泛型 类型“System.Collections.Generic.List<T>”需要 1 个类型参数 c:\users\sinner\documents\visual studio 2010\Projects\wang\wang\Program.cs 24 68 wang
错误 2 使用泛型 类型“System.Collections.Generic.List<T>”需要 1 个类型参数 c:\users\sinner\documents\visual studio 2010\Projects\wang\wang\Program.cs 24 89 wang