i have been screwing around with the windows GUI recently and textboxes use system::string type, i have a function that returns an int value and i need it to appear in the text box so i need to convert an int to a system::string. here is my current code:
visual studio gives me these errors: Error 1 error C2664: 'void System::Windows::Forms::Control::Text::set(System::String ^)' : cannot convert parameter 1 from 'int' to 'System::String ^'
so i basically just need to convert my integer to a system string could anyone tell me how to do that