I have a class library ClassLibrary1.dll in c:\MyDll\ClassLibrary1.dll with this
public class Class1
{
public void Run()
{
Console.WriteLine("Inside Class 1 Library ");
}
}
Using AppDomain how would i create a instance for the class Class1 and execute the method "Run" in .net 2.0 Note: I do not want to use Assembly.LoadFile