Saqib Ullah

BootStrapper Know How

  Home  |   Contact  |   Syndication    |   Login
  112 Posts | 1 Stories | 1045 Comments | 15 Trackbacks

News



Article Categories

Archives

Post Categories

Blogging websites

Favourite Blogs

Private Links

Sites

C++

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 ......