Embedding VC++.NET code in VC#.NET Project
C#
2
Posts
2
Posters
0
Views
1
Watching
-
Is there any method of embedding VC++.NET code in VC#.NET Project and using the different functions declared in VC++ code in VC#. CHEERS
-
Is there any method of embedding VC++.NET code in VC#.NET Project and using the different functions declared in VC++ code in VC#. CHEERS
Create a .NET assembly using Managed C++, wrapping any unmanged code into a managed class. In the C# project, reference the newly created assembly, and you'll be able to make full use of the MC++ managed classes. Take a peek at Nick Parker's article[^] to get your started, or look through the list of Managed C++ articles here on CodeProject. There are some good examples there. Hope that helps. :) --Jesse