111,086
社区成员




ClassA ca = new ClassA();
ca.Do();
Assembly assembly = Assembly.LoadFrom(@"\lib\a.dll");
Type type = assembly.GetType("ClassA", true);
MethodInfo mi = type.GetMethod("Do");
Object o = Activator.CreateInstance(type);
mi.Invoke(o);