Does the .Net run-time compiler support C# 3.0? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T07:40:17Z http://stackoverflow.com/feeds/question/286475 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/286475/does-the-net-run-time-compiler-support-c-3-0 2 Does the .Net run-time compiler support C# 3.0? David Stafford 2008-11-13T07:56:46Z 2008-11-13T08:21:58Z <p>It looks like the run-time compiler doesn't support the same language as the command-line compiler so if you want to use lambda expressions, extensions methods or LINQ, well, you're stuck.</p> <p>There's more detail here:</p> <p><a href="http://metadatalabs.com/blog/" rel="nofollow">http://metadatalabs.com/blog/</a></p> <p>Is this correct or is there a work-around? (Short of spawning the command-line compiler, of course.)</p> http://stackoverflow.com/questions/286475/does-the-net-run-time-compiler-support-c-3-0/286482#286482 0 Answer by vimpyboy for Does the .Net run-time compiler support C# 3.0? vimpyboy 2008-11-13T08:09:07Z 2008-11-13T08:09:07Z <p>I haven´t tried that, but it sounds crazy..</p> <p>In the future that wont be a problem, since the .NET team are going to have the C# compiler available as a service, which means you can work with the real C# compiler in your code. Take a look at this video:</p> <p><a href="http://channel9.msdn.com/pdc2008/TL16/" rel="nofollow">http://channel9.msdn.com/pdc2008/TL16/</a></p> http://stackoverflow.com/questions/286475/does-the-net-run-time-compiler-support-c-3-0/286501#286501 1 Answer by Tim Merrifield for Does the .Net run-time compiler support C# 3.0? Tim Merrifield 2008-11-13T08:16:38Z 2008-11-13T08:16:38Z <p>This guy's blog seems to have the answer</p> <p><a href="http://andersnoras.com/blogs/anoras/archive/2008/04/13/codedomproviders-and-compiler-magic.aspx" rel="nofollow">CodeDomProviders</a></p> <p>Looks like the factory defaults the instance it returns to 2.0.</p> <p>This seems like a pretty crazy technique. Somewhere Paul Graham is crying.</p> http://stackoverflow.com/questions/286475/does-the-net-run-time-compiler-support-c-3-0/286509#286509 2 Answer by Jamie Penney for Does the .Net run-time compiler support C# 3.0? Jamie Penney 2008-11-13T08:20:25Z 2008-11-13T08:20:25Z <p>I've been using this, and it seems to work when compiling using .Net 3.5</p> <pre><code>CodeDomProvider provider = new CSharpCodeProvider(new Dictionary&lt;string, string&gt; { { "CompilerVersion", "v3.5" } }); </code></pre> http://stackoverflow.com/questions/286475/does-the-net-run-time-compiler-support-c-3-0/286513#286513 2 Answer by VVS for Does the .Net run-time compiler support C# 3.0? VVS 2008-11-13T08:21:58Z 2008-11-13T08:21:58Z <p>Take a look at the documentation of the <a href="http://msdn.microsoft.com/en-us/library/bb537926.aspx" rel="nofollow">CSharpCodeProvider constructor</a>:</p> <blockquote> <p>The value for providerOptions is obtained from the element in the configuration file. You can identify the version of the CSharpCodeProvider you want to use by specifying the element, supplying "CompilerVersion" as the option name, and supplying the version number (for example, "v3.5") as the option value. You must precede the version number with a lower case "v".</p> </blockquote>