c# – 在visual studio中运行作为资源添加的exe文件
发布时间:2020-12-16 01:50:50 所属栏目:百科 来源:网络整理
导读:简单地说,我已经将视觉工作室项目的资源添加为exe文件.我该如何运行这个文件?我在c#中编码. 解决方法 您可以将Resource作为byte [] byte[] myResBytes = ...;Assembly asm = Assembly.Load(myResBytes);// search for the Entry PointMethodInfo method = a
简单地说,我已经将视觉工作室项目的资源添加为exe文件.我该如何运行这个文件?我在c#中编码.
解决方法
您可以将Resource作为byte []
byte[] myResBytes = ...; Assembly asm = Assembly.Load(myResBytes); // search for the Entry Point MethodInfo method = asm.EntryPoint; if(method == null) throw new NotSupportedException(); // create an instance of the Startup form Main method object o = asm.CreateInstance(method.Name); // invoke the application starting point method.Invoke(o,null); 有关更多详细信息,请参阅here 希望这可以帮助 (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |