我只想在 C++ 中向我的 listBox 添加一个 wostringstream (tmp) 项。这是我尝试的方式:
for(int i=0; i<6; i++){
tmp<<hex<<m_device_info.Adress.rgBytes[i];
if (i<5)
tmp<<L":";
}
listBox2->Items->Add(tmp.str());
我得到的错误是:
“错误 C2664:'System::Windows::Forms::ListBox::ObjectCollection::Add' 在 'system::object ^' 中转换 'wchar_t' 是不可能的”
有人有线索吗?