CSharp 从资源文件中动态加载DLL Joe

1        System.Resources.ResourceManager rm = new System.Resources.ResourceManager(GetType().Namespace + ".Properties.Resources", System.Reflection.Assembly.GetExecutingAssembly());
2 
3             byte[] bytes = (byte[])rm.GetObject(dllName);
4 
5             return System.Reflection.Assembly.Load(bytes);
原文地址:https://www.cnblogs.com/Smart_Joe/p/2766615.html