Is it possible to load and execute C# snippets using DLR? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T10:49:50Z http://stackoverflow.com/feeds/question/1019947 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1019947/is-it-possible-to-load-and-execute-c-snippets-using-dlr 5 Is it possible to load and execute C# snippets using DLR? David Robbins 2009-06-19T20:39:45Z 2009-06-19T21:16:37Z <p>The majority of material I have found regarding DLR is related to IronPython. Can you parse and execute C# using DLR? If so is there over head that would prevent you from attempting this on a web server with about 30 users?</p> <p>More specifically I would like to script the configuration of my workflow objects when a user first initiates a workflow. Depending on conditions that change through out the year workflows may start at different steps, hence running configuration scripts seems like a good way to handle the variation.</p> http://stackoverflow.com/questions/1019947/is-it-possible-to-load-and-execute-c-snippets-using-dlr/1019975#1019975 2 Answer by Marc Gravell for Is it possible to load and execute C# snippets using DLR? Marc Gravell 2009-06-19T20:49:23Z 2009-06-19T20:49:23Z <p>It sounds like you're really talking about the C# "compiler as a service" (at the end of <a href="http://channel9.msdn.com/pdc2008/TL16/" rel="nofollow">this video</a>), which will hopefully be in the 5.0 timescale for .NET (although Mono <a href="http://www.go-mono.com/docs/index.aspx?link=N:Mono.CSharp" rel="nofollow">has it now</a>). For now, <a href="http://msdn.microsoft.com/en-us/library/microsoft.csharp.csharpcodeprovider.aspx" rel="nofollow">CSharpCodeProvider</a> is the best we have (which works largely like "csc").</p> http://stackoverflow.com/questions/1019947/is-it-possible-to-load-and-execute-c-snippets-using-dlr/1020050#1020050 0 Answer by David Robbins for Is it possible to load and execute C# snippets using DLR? David Robbins 2009-06-19T21:16:37Z 2009-06-19T21:16:37Z <p>Although Marc offered an alternative for me, I read this related <a href="http://stackoverflow.com/questions/297624/vbx-language-hosting-via-dlr">SO question</a> and C# and VB are not supported as of yet.</p>