Entry point not found in assembly
问题 I have a Application where I need to create AppDomain and Load Assembly into it and execute the methods in the Assembly. Here is my Code public class CreateAppDomain { public void CreateAppDom() { AppDomain domain = AppDomain.CreateDomain("myDomain"); domain.ExecuteAssembly(@"C:\Visual Studio 2005\Projects\A1\A1\bin\Debug\A1.dll"); domain.CreateInstanceFrom(@"C:\Visual Studio 2005\Projects\A1\A1\bin\Debug\A1.dll","A1.Navigate"); } } I above code is written in a classfile called