C++手动加载CLR运行托管程序(CLR Hosting)(3)

using System; namespace SampleManagedApp { class Program { static void Main(string[] args) { } public static int Test(string s) { Console.WriteLine(s); return 0; } } }

最终将SampleManagedApp.exe与非托管程序放在同一个路径下运行非托管程序,就会得到最终Console中输出:Hello World!

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:http://www.heiqu.com/20299fee26faec5d3ae6bff0af8d7f0c.html