tags:

views:

265

answers:

3

How do I make use of the .NET framework namespaces from C++?

+3  A: 

You can do this in managed C++. Use #using directive and use the namespaces like you normally do.

Naveen
+1  A: 

Start Here: Pure C++: Hello, C++/CLI

JP Alioto
+2  A: 

C# will be

using System;

using System.Configuration;

C++ will be

using namespace System;

using namespace System::Configuration;


Don't forget to reference the libraries in your c++ project properties.