Я использую приложение Windows Form с C ++.
Я хочу преобразовать String^
в int
.
Мой код:
int number = std::stoi(TextBox1->Text);
Но ошибка показывает:
no instance of overloaded function "std::stoi" matches the argument list argument types are :(System:: String ^)
А что значит ^
впереди String
?