C# 错误 1 找不到类型或命名空间名称“Student”(是否缺少 using 指令或程序集引用?)

日期:2011-08-13 17:05:13 人气:4

C# 错误 1 找不到类型或命名空间名称“Student”(是否缺少 using 指令或程序集引用?)

你写的很乱 。。。 建议这样写: class student { 名字 出生日期 ID } Student firstStudent; firstStudent = new Student(); firstStudent.Name = "关羽"; firstStudent.BirthDay = new DateTime(1990, 1, 2);
    A+
热门评论