.NET Framework C ++ / CLI中的Hello World

示例

using namespace System;

int main(array<String^>^ args)
{
    Console::WriteLine("Hello World");
}