#[c++] Marshaling

Programming/Old 2016. 3. 10. 11:05

마샬링을 이용하면 

string를 char로,  

char를 string 으로 쉽게 변환할 수 있다.


마샬링을 사용하기 위해서는 다음과 같은 헤더파일과 namspace를 등록해줘야 하고, 

#include <msclr\marshal.h>

using namespace msclr::interop;


Project Properties-> Configuration Properties -> General -> Common Language Runtime Supprot 

를 'Common Language Runtime Supprot (clr)' 로 변경해줘야 한다.


또한 아래 사이트에 From type, To type이 적혀 있으니 참고하면 된다.

https://msdn.microsoft.com/en-us/library/bb384865.aspx


'Programming > Old' 카테고리의 다른 글

#[Cocos2x-x] 멸령어 메모  (0) 2016.03.30
#[cocos2d-x]MSB3073  (0) 2016.03.12
#[c++] 정적, 동적 라이브러리 관련 Url  (0) 2016.03.09
#[c++] int To string.  (0) 2016.03.07
#[coco2d-x] How to add event at PageView  (0) 2016.03.07
admin