1

Possible Duplicate:
Is it possible to dynamically compile and execute C# code fragments?

I know that it is not the norm, but I am building something that needs to access, and then use, an external .cs file, that can be in the same namespace.

I am not looking for better c# protocol or what's normally done. In all the research that I've done prior to this question, everyone said that's not the norm. But I know that, and I'm still wondering if there is a way to do it.

thanks so much =)

Community
  • 1
  • 1
Binny Zupnick
  • 397
  • 1
  • 2
  • 8

1 Answers1

1

Fortunately for you, this is already in the framework: CSharpCodeProvider

Nick Butler
  • 24,045
  • 4
  • 49
  • 70