For the life of me, I cannot figure out what is going on in the example piece of C# code below. The collection (List) property of the test class is set as read only, but ye
I think that, beeing read only, you can't do
c.StringCollection = new List();
But you can assign items to list... Am I wrong?