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' convert'wchar_t' in'system :: object ^'notpossible"
誰かが手がかりを持っていますか?