我想将System :: String ^转换为LPCWSTR.
对于
FindFirstFile(LPCWSTR,WIN32_FIND_DATA);
请帮忙.
在C/C++LI中最简单的
方法是使用pin_ptr:
#include <vcclr.h>
void CallFindFirstFile(System::String^ s)
{
WIN32_FIND_DATA data;
pin_ptr<const wchar_t> wname = PtrToStringChars(s);
FindFirstFile(wname,&data);
}
原文链接:https://www.f2er.com/c/113678.html