Data Type Visual C++ .NET

#include "stdafx.h"
#include 
using namespace System;
void main()
{
    String ^hstr = "Hello World!";
    pin_ptr pstr = PtrToStringChars(hstr);
    wprintf(pstr);
}