- > j = new List
- >();
i.Add(x);
i.Add(z);
j.Add(i);
i.Clear();
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
joakim wireenPosted Apr 28, 2009, 5:12 AM
i.Add(x);
i.Add(z);
j.AddRange(i);
i.Clear();
StefanPosted Apr 26, 2009, 10:31 AM