我正在编写一个 C# 示例来学习列表以及如何初始化它们。所以我有一个具有一些属性的类:
public class C1
{
public string p1 { get; set; }
public string p2 { get; set; }
public List<StatusChoices> ChoiceList { get; set; }
...
public string FillList(string v1, int v2, bool v3)
{
// How can I fill this.ChoiceList?
this.ChoiceList.val1 = v1; //Is this possible?
return this.ChoiceList.val1;
}
}
public class StatusChoices
{
public string val1 { get; set; }
public int val2 { get; set; }
public bool val3 { get; set; }
}
这可能很容易,但到目前为止我无法实现。如何“手动”将一些值添加到列表中?
慕仙森
HUX布斯
德玛西亚99
相关分类