How do I make use of the .NET framework namespaces from C++?
Asked
Active
Viewed 4,206 times
1
-
learn to provide more information when you post a question... Contacting emergency services with just 'help! I am in trouble' is just a waste of time. What is your specific problem? Do you want to use a managed type/class in managed C++ or unmanaged C++ ? – Gishu Apr 10 '09 at 05:32
-
Bah, there is nothing wrong with this. The question is pretty obvious. He wants to reference .NET namespaces from Visual C++. – BobbyShaftoe Apr 10 '09 at 05:41
-
Clean up text and tags (not a C# question at all) – Richard Apr 10 '09 at 09:42
3 Answers
3
You can do this in managed C++. Use #using directive and use the namespaces like you normally do.

Naveen
- 74,600
- 47
- 176
- 233