我对 c# 中的结构有点陌生。
我的问题是:
编写一个控制台应用程序,接收一组学生的以下信息:studentid、studentname、coursename、date-of-birth.. 该应用程序还应该能够显示正在输入的信息.. 使用结构实现它..
我一直到这个-->
struct student
{
public int s_id;
public String s_name, c_name, dob;
}
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Please enter StudentId, StudentName, CourseName, Date-Of-Birth");
s_id = Console.ReadLine();
s_name = Console.ReadLine();
c_name = Console.ReadLine();
s_dob = Console.ReadLine();
student[] arr = new student[4];
}
}
在此之后请帮助我..