티스토리 뷰
728x90
반응형
//DllImport ini
using System.Runtime.InteropServices;
//StringBuilder
using System.Text;
//DllImport ini
[DllImport("kernel32")]
private static extern long WritePrivateProfileString(string section, string key, string val, string filePath);
[DllImport("kernel32")]
private static extern int GetPrivateProfileString(string section, string key, string def, StringBuilder retVal, int size, string filePath);
StringBuilder ret = new StringBuilder (256);
GetPrivateProfileString("Title", "Key", "Defualt", ret, 256, filepath);
GetPrivateProfileString에서 StringBuilder를 사용하는 이유는 return값이 write되는 char[]형이기 때문이다.
반응형
'프로그래밍' 카테고리의 다른 글
Visual C++에서 iconv 사용하여 wchar_t 변환하기 (0) | 2017.02.07 |
---|---|
Visual C++ crash dump 파일이 생성이 되지 않을때 (0) | 2017.02.07 |
C# UDP Server/Client 예제 (0) | 2017.02.03 |
Python 개행문자 처리하기 (0) | 2017.02.03 |
Python 예외 처리하기 (0) | 2017.02.03 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday