1 回答

TA貢獻(xiàn)1811條經(jīng)驗(yàn) 獲得超6個贊
我創(chuàng)建了一個單獨(dú)的具有相同屬性的元素類
class elements
{
public string type { get; set; }
public string name { get; set; }
public string title { get; set; }
public System.Collections.ObjectModel.Collection<choices> choices { get; set; }
public System.Collections.ObjectModel.Collection<elements2> element { get; set;
}
}
class elements2
{
public string type { get; set; }
public string name { get; set; }
public string title { get; set; }
public System.Collections.ObjectModel.Collection<choices> choices { get; set; }
}
這對我有用
- 1 回答
- 0 關(guān)注
- 121 瀏覽
添加回答
舉報