私はVBでプログラミングするのに問題はありませんが、が非常にになります。文字列^をintに変換する
私はInt
に(String^
である)tempString
を変換するにはどうすればよいの変数...
newData = gcnew String(nonSharedRXBuffer, 0, newBytesReceived);
myString = newData;
String^ tempString;
unsigned int Value;
とコードの一部....
tempString = newData->Remove(1,(newData->Length)-1);
Value = tempString; **//need to convert the String^ to Int**
newData = newData->Remove(0, 1);
tempString = newData->Remove(1,(newData->Length)-1);
Value = tempString; **//need to convert the String^ to Int**
newData = newData->Remove(0, 1);
がありますか?