- 914 名前:デフォルトの名無しさん [2008/02/07(木) 19:43:00 ]
- #1:
String^ str = "Hello World"; pin_ptr<const wchar_t> cstr = PtrToStringChars ( str ); wprintf ( L"%s", cstr ); #2: String^ str = "Hello World"; interior_ptr<const wchar_t> cstr = PtrToStringChars ( str ); wprintf ( L"%s", cstr ); #3: #include <atlstr.h> ... String^ str = "Hello World"; CString cstr ( str ); wprintf ( L"%s", cstr );
|

|