I need to get a collection type data from a property/field and eventually display it on a form. How do I do that?
The code below explains what I am trying to do and errors I got, hope it makes sense.
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?
}
}
ObjectA? Does it have aColValsproperty? What is it's type? – D Stanley Feb 15 at 18:22