-1

プロパティ/フィールドからコレクションタイプのデータを取得し、最終的にフォームに表示する必要があります。それ、どうやったら出来るの?

以下のコードは、私がやろうとしていることと私が得たエラーを説明しています。それが理にかなっていることを願っています。

public class C
{

    public string Id { get; set; }
    //public List<string> ColVal { get; }

    public C()
    {}

    public C(ObjectA objVar)
    {
        Id = objVar.Id;
        //ColVal = objVar.ColVals; //<- Errors out: This is a collection type property, how do I get values & solve this?
    }
}
4

1 に答える 1

1

ObjectAが何であるかはわかりませんが、タイプCのように見えたので、変更しました。次に、コレクションプロパティにセッターがないことに気付きました。

パブリッククラスC{

public string Id { get; set; }
public List<string> ColVal { get; set; }

public C()
{}

public C(C objVar)
{
    Id = objVar.Id;
   ColVal = objVar.ColVal; //<- Errors out: This is a collection type property, how do I get values & solve this?
}
}
于 2013-02-15T18:25:54.530 に答える