プロパティとして文字列と配列を受け入れる単純なオブジェクトを作成しようとしています。オブジェクトに配列を追加する
これは私がこれを成し遂げるために試した方法です:
public void addToObject()
{
List<Vars> variable = new List<Vars>();
variable.Add(new Vars { Id = "var1", Name = { "n1", "n2", "n3", "n4" } });
}
public class Vars
{
public string id { get; set; }
public string name { get; set; }
}
しかし、それは返します
Cannot initialize type 'ExcelSDRAddIn.UserControlSDR.Vars' with a collection initializer because it does not implement 'System.Collections.IEnumerable'
名は文字列であり、あなたは、コレクションを割り当てます文字列の – jjj