In my last blog we saw how to create netmodule any code in .net. Today we well see that how we can use it in an application. So for the implementation of the netmodule in my code I would like to show you a little Managed C++ application that easily consumed it. // HelloWorld.h #using <mscorlib.dll> #using "CSharpHelloWorld.netmodule" using namespace System; // This code wraps the C# class using Managed C++ public __gc class HelloWorldC { public: CSharpHelloWorld __gc *t; // Provide .NET interop ......