Im trying to create a windows form that allows the user to enter values into a jagged array in the form of a characters Name, Strength and Dexterity. Once they enter those values into a text box it has to be saved so users can view the information for characters that have been entered by using the List Box
public Form1()
{
InitializeComponent();
String[][] Arr = new String[3][];
Arr[0] = new String[20];
Arr[1] = new String[20];
Arr[2] = new String[20];
}
So ive created Strings for the user to enter the values for the 3 attributes. Now im not sure where to actually add the code (and what the code is). Should i put a line such as Arr[0] = NameTxtbox.Text