Data Type Visual C++ .NET

#include "stdafx.h"
#include 
#include 
using namespace std;
using namespace System;
int main()
{
   String^ s = "Testing String conversion to iostream.";
   pin_ptr ptr = PtrToStringChars(s);
   wcout << static_cast( ptr ) << endl;
}