I can run a .net exe using this method :
Assembly a = Assembly.Load(bytes);
MethodInfo method = a.EntryPoint;
if (method != null)
method.Invoke(a.CreateInstance(method.Name), null);
How can I do the same thing for a non-.NET exe? I don't want to write .exe files and run it like Process.Start()
How can I accomplish this?