doest C# always have to be compiled or is there a way to run C# on the fly?

  • Thread starter Thread starter Richard
  • Start date Start date
R

Richard

I want to know if there is a way it's possible to run
csharp code from a .txt file without having to recompile
it.

thx in advance
 
I want to know if there is a way it's possible to run
csharp code from a .txt file without having to recompile
it.

C# always has to be compiled, but there are classes available to let
you compile extra code into an assembly while your program is running.
See Snippy for a simple example of this: http://csharpindepth.com/Downloads..aspx

Jon
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top