Suppose if I need a two-dimensional array of characters, with the standard std :: basic_string I can create it as follows:
string **table = new string*[n]; for (int i = 0; i<n; i++){ table[i]=new string[n]; } How to implement the same with String ^? And how to format output, for example, in a textbox? I apologize for the stupid questions, asked the coursework, which needs to be done on windows forms. In the console I did everything, but with the windows there is a problem :(