這是類:列表<class>添加字符串
public class Vokabel
{
string DV;
string eV;
public string _DV
{
get { return DV;}
set { DV = value;}
}
public string EV
{
get{return eV;}
set{eV = value;}
}
public Vokabel (string dv, string ev)
{
this._DV = dv;
this.EV = ev;
}
}
,我想Userchoice添加到Vokabel1。
List<Vokabel> Vokabel1 = new List<Vokabel>();
for (int i = 0; i< 9; i++) {
Console.WriteLine("Enter a Vokabel["+i+"]:");
string Userchoice = Console.ReadLine();
Vokabel1.Add(Userchoice);
}
這不會運行。我試圖拆分Userchoice
- 不工作。 謝謝你閱讀我的問題!
你必須創建一個'Vokabel'類型的對象,你不能只添加一個字符串。 –
downvote -why? ) – user3092365