1using namespace System; 2 3namespace CSharpLibrary 4{ 5 public ref class UsefulManagedCppClass 6 { 7 public: 8 9 UsefulManagedCppClass(); 10 void RunTest(); 11 12 private: 13 14 String^ m_usefulString; 15 }; 16} 17 18