Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?
    }
}
share|improve this question
3  
You would need a setter for your ColVal property, first off. Secondly, I am still not sure what you're trying to do. Can you elaborate more? – Pat Burke Feb 15 at 18:19
What is ObjectA? Does it have a ColVals property? What is it's type? – D Stanley Feb 15 at 18:22

2 Answers

I don't know what ObjectA is, but it looked like it should be of type C, so I changed that. Then I noticed your collection property did not have a setter.

public class 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?
}
}
share|improve this answer
ObjectA is a class which comes from an external dll which is referenced in the project. objVar.ColVals: ColVals is a property of objVar and the signature from VS Object Browser browser is as below: //public SomeCompany.SCData.Extensions.ExtensionCollection<MediaCategory> Tags { get; } It has a getter but not a setter. I need to extract the values of objVar.ColVals and get it displayed on a form objVar.ColVals I suspect is a string of Tags that I need displayed on s form. – James Feb 15 at 20:33

If you have no way to set the value...you can't set the value.

So add a way to set the value:

public List<string> ColVal 
{
    get;
    private set; // now only WE can set the value.
}

public C(ObjectA objVar)
{
    Id = objVar.Id;
    ColVal = objVar.ColVals;
    // presumes ColVals is List<string>, if some IEnumerable<string> then:
    // ColVal = new List<string>(objVar.ColVals);
    //   or
    // ColVal = objVar.ColVals.ToList();
}
share|improve this answer
ObjectA is a class which comes from an external dll which is referenced in the project. objVar.ColVals: ColVals is a property of objVar and the signature from VS Object Browser browser is as below: //public SomeCompany.SCData.Extensions.ExtensionCollection<MediaCategory> Tags { get; } It has a getter but not a setter. I need to extract the values of objVar.ColVals and get it displayed on a form objVar.ColVals I suspect is a string of Tags that I need displayed on s form. – James Feb 15 at 20:35
My code is correct, you just need to extract the values like you said. You could use a foreach-loop, for-loop, LINQ. Lots of options. Good luck. – sixlettervariables Feb 15 at 20:37

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.