0
私は以下のクラスを持っている:それは10件のCityDetail
レコードを持つCityViewModel
を作成することvar model = new CityViewModel();
クラスを作成するときにIListに値を設定するにはどうすればよいですか?
:私のような何かをするときように
public class CityViewModel
{
public City City { get; set; }
public IList<CityDetail> CityDetails { get; set; }
public class CityDetail()
{
public CityDetail() {
Text = new HtmlText();
ImageFile = String.Empty;
Correct = false;
Explanation = new HtmlText();
}
public bool Correct { get; set; }
public HtmlText Text { get; set; }
public string ImageFile { get; set; }
public HtmlText Explanation { get; set; }
}
は、どのように私はそれを行うことができますか?