Add property to a list?

Viewed 7947

I have a list with a lot of objects List<MyObjects> - Im iterating through this list and reading the objects. Thats all fine. I just relized now, what it would be awesome if I could add 1 more special value to this List - not an Object, just 1 value of something (a string).

I could now create a class like

class Needless
{
  public List<MyObjects> MyList { get; set; }
  public string MyValue { get; set; }
}

but Im trying to avoid that. I just really need 1 string with an input every List<MyObjects> Any ideas?

3 Answers
Related