>using namespace System
Just add a semicolon and you should be solid:
using namespace System;
How do i do an internal class in C++?
The private keyword at class level has the same semantics as internal in C#:
private ref class UserFeedback {
public:
static void Error(Exception^ e)
{
}
};