public readonly int items = 3;
private System.Windows.Forms.TextBox[,] statsBonus = new System.Windows.Forms.TextBox[6, items];
It's giving me this error on the "items" variable. How do I make it so that I can use a variable called "items" instead of having to write 3 in every field that uses the number 3?
If I want to edit this on the code, I don't want to have to change the number 3 to something else manually. I want to use a variable so all I have to do is just change the variable to change everything.