Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- C/C++
- Android
- Flutter TextField
- android architecture component
- 프로그래머스
- 안드로이드
- RxJava
- RxAndroid
- FLUTTER
- UWP
- flutter firestore
- C
- Django REST Android
- Django REST
- 안드로이드 구글맵
- C++
- Java
- livedata
- 알고리즘
- Kotlin
- Rxjava2
- NDK
- Python
- android push
- Android P
- 코틀린
- mfc
- kodility
- Django REST framework
- dart
Archives
- Today
- Total
개발하는 두더지
[C/C++/UWP] UWP 현재 실행되는 경로 구하기 ( Platform::String <-> WCHAR / wstring ) 본문
Platform::String to WCHAR / wstring
1 2 3 4 5 6 7 8 9 10 | DWORD dwTest = MAX_PATH; WCHAR wzTest[MAX_PATH] = { 0, }; GetCurrentDirectoryW(dwTest, wzTest); // WCHAR -> Platform::String String^ strTemp1 = ref new String(wzTest); // WCHAR -> WString -> Platform::String std::wstring wstrTemp(wzTest); String^ strTemp2 = ref new String(wstrTemp.c_str()); | cs |
wstring to Platform::String
1 2 3 4 5 6 7 | // Platform::String -> WString // and Replacing String^ str = "AAAA"; std::wstring wstr(str->Data()); std::wstring replacement(L"BBB"); wstr = wstr.replace(1, 3, replacement); str = ref new String(wstr.c_str()); | cs |
'C,C++' 카테고리의 다른 글
[C/C++/UWP] UWP remote debugging error DEP4300 - Could not generate the root folder for app package (0) | 2016.07.22 |
---|---|
[C/C++/UWP] 사진라이브러리에서 jpg 파일 선택하기 ( C++/CX - Lambda ) (0) | 2016.07.22 |
C++ 11/14/17 이란? (0) | 2016.07.22 |
[C/C++/MFC] URLEncode, URLDecode (2) | 2016.07.22 |
[C/C++/MFC] C++ HTTP Web Server에서 HTTPS/SSL 사용하기 (AJAX 통신) (5) | 2016.07.22 |
Comments