我有如下創建一個列表: 名稱,卷沒有 subjectno,主題型 主題無關,主題型我們可以用C#中的列表創建一個字典嗎?
例如
name[0] = ron, roll no[0] = 12
subjectno[0]=1, subject type[0]="english"
subjectno[1]=12, subject type[1]="maths"
name[1] = elis, roll no[1] = 11
subjectno[0]=1, subject type[0]="english"
subjectno[1]=12, subject type[1]="maths"
subjectno[2]=14, subject type[2]="physics"
我不知道如何在C#中做到這一點。 我試着製作一份學生信息清單,然後是主題號和主題類型,我試着製作一本字典。 我已經寫了這樣的代碼 -
class Student
{
public class StudentInfo
{
public String name { get; set; }
public int rollno { get; set; }
Dictionary<String, String> subjects;
public StudentInfo(String name, int rollno)
{
this.name = name;
this.rollno = rollno;
}
public void addstudentinfo(string subjectno, string subjecttype)
{
if (subjects == null)
subjects = new Dictionary<string, string>();
subjects.Add(subjectno, subjecttype);
}
}
你必須定義你的對象是什麼C#類? –
作業?請標記爲這樣。 –