17 lines
226 B
C++
17 lines
226 B
C++
using namespace System;
|
|
|
|
namespace CSharpLibrary
|
|
{
|
|
public ref class UsefulManagedCppClass
|
|
{
|
|
public:
|
|
|
|
UsefulManagedCppClass();
|
|
void RunTest();
|
|
|
|
private:
|
|
|
|
String^ m_usefulString;
|
|
};
|
|
}
|