Mega Code Archive

 
Categories / Visual C++ .NET / Data Type
 

Pointer To String Chars

#include "stdafx.h" #include <msclr\all.h> using namespace System; void main() {     String ^hstr = "Hello World!";     pin_ptr<const wchar_t> pstr = PtrToStringChars(hstr);     wprintf(pstr); }