Skip to content

Instantly share code, notes, and snippets.

@marukun318
Created August 21, 2019 15:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save marukun318/d74bc69184f316bd7413c484c03001a9 to your computer and use it in GitHub Desktop.
Save marukun318/d74bc69184f316bd7413c484c03001a9 to your computer and use it in GitHub Desktop.
C+/CLI テスト
#using <mscorlib.dll>
using namespace System;
using namespace System::Collections::Generic;
using namespace System::Diagnostics;
#include <stdio.h>
/// C++/CLI テスト
int main(array<System::String ^> ^args)
{
Console::WriteLine("Hello, World !");
printf("Hello, World !\n");
Debug::WriteLine("Debug Output");
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment