Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am trying to initialize a generic collection List something like this:

List<MyCustomClass> myCustomClassList = new List<MyCustomClass>() {myCustomClassInstance1, myCustomClassInstance2};

I am getting the compile error "; expected". I don't understand this. Shouldn't I just be able to initialize this collection like this?

share|improve this question
Sure. How old is your Visual Studio edition? – Hans Passant Feb 28 '11 at 21:23
I'm using .NET 2.0 with VS 2005. Guess that's my problem? – Richard DesLonde Feb 28 '11 at 21:25

2 Answers

up vote 4 down vote accepted

What version of .NET are you using? Collection initializers only work in .NET 3.5 and higher

share|improve this answer
I'm using .NET 2.0 with VS 2005. – Richard DesLonde Feb 28 '11 at 21:25
Yeppers, that is your problem, you need VS2008 or higher for collection initializers – LorenVS Feb 28 '11 at 21:26
Ok. I have used array (non-generic) initializers, so those work, just not the collection initializers I guess. – Richard DesLonde Feb 28 '11 at 21:32

Collection Initializers are part of the C# 3.0 specification and not the .Net Framework/Libraries. The earliest implementation that uses C# 3.0 is VS2008, and the .Net 3.5 framework. You can build against earlier versions of the framework. If you are compiling via script from the command-line, or other IDE, make sure you are referencing the appropriate toolchain: C:\Windows\Microsoft.NET\Framework\v3.5\csc.exe

share|improve this answer
Thank you. Very helpful. – Richard DesLonde Feb 28 '11 at 21:55

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.