vote up 3 vote down star

With C# 3.0 you could use many of its features (object initializers, var variables, lambda expressions) while still targeting .NET 2.0 or 3.0.

What new C# 4.0 features can be used while still targeting the .NET 2.0, 3.0 or 3.5 runtimes?

flag

80% accept rate

1 Answer

vote up 2 vote down check
  • Dynamic features: Probably not. I suppose they COULD implement the dynamic features without the DLR, but that doesn't seem likely.

  • New generic constraints: The CLR supports them

  • Optional and named: CLR already supports it (VB-style)

Update: I just heard that C# 4 compiler will not support anything under 4.0 framework.

link|flag
You could support the non-DLR based dynamic features the same way VB does. – Jonathan Allen Oct 30 '08 at 6:20
Yes, but that'd require them to target DLR and the VB way. It's possible, but then C# would end up acting different on different targets. – MichaelGG Oct 30 '08 at 12:43

Your Answer

Get an OpenID
or

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