Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Running code in runtime

Status
Not open for further replies.

mitch77

Programmer
Nov 16, 2000
42
0
0
PT
Hi,

Does any Method or object in C# that is similar to the VB6 "ScriptControl", and if exists, where can i view some documentation and examples.

Thanks,
Mitch
 
You can load assemblies at runtime and execute them using Assembly.Load(). Typically, you want to do this in a separate AppDomain, especially if you don't entirely trust the other code. NUnit does this, and the source is available on Sourceforge.

Chip H.




____________________________________________________________________
Donate to Katrina relief:
If you want to get the best response to a question, please read FAQ222-2244 first
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top