Does the .Net run-time compiler support C# 3.0? - Stack Overflow most recent 30 from stackoverflow.com2009-12-15T07:40:17Zhttp://stackoverflow.com/feeds/question/286475http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/286475/does-the-net-run-time-compiler-support-c-3-02Does the .Net run-time compiler support C# 3.0?David Stafford2008-11-13T07:56:46Z2008-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#2864820Answer by vimpyboy for Does the .Net run-time compiler support C# 3.0?vimpyboy2008-11-13T08:09:07Z2008-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#2865011Answer by Tim Merrifield for Does the .Net run-time compiler support C# 3.0?Tim Merrifield2008-11-13T08:16:38Z2008-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#2865092Answer by Jamie Penney for Does the .Net run-time compiler support C# 3.0?Jamie Penney2008-11-13T08:20:25Z2008-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<string, string> { { "CompilerVersion", "v3.5" } });
</code></pre>
http://stackoverflow.com/questions/286475/does-the-net-run-time-compiler-support-c-3-0/286513#2865132Answer by VVS for Does the .Net run-time compiler support C# 3.0?VVS2008-11-13T08:21:58Z2008-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>