C# String을 C++ char로 변환
Programming/C# / 2012. 5. 14. 17:47
1 2 3 4 5 6 7 8 9 10 | using System.Runtime.InteropServices; String strHello = "Hello" ; // IntPtr나 System::String^로 넘겨 주면 됨 IntPtr pStr = Marshal.StringToHGlobalUni(strHello ); // pStr 사용 // 사용 후 메모리 해제 Marshal.FreeHGlobal(pStr); |
반응형
'Programming > C#' 카테고리의 다른 글
keybd_event (user32) (0) | 2012.05.21 |
---|---|
C#과 C++ DLL 간의 스트링 데이타 교환 (0) | 2012.05.14 |
Returning Strings from a C++ API to C# (0) | 2012.05.14 |
SendMessage C# -> C++ with String (0) | 2012.05.09 |
C# Win32 messaging with SendMessage and WM_COPYDATA (0) | 2012.05.08 |