Ha! I'm only on my second quarter of being a computer science student and I'm trying to learn C++, it's difficult. I've got Visual Studio open right now and I'm trying to learn to properly display a 2-dimensional array. I've gotten exactly this far:
private void btn1_Click(object sender, EventArgs e)
{
//1. Display the array int rows = A.GetLength(0);
int columns = A.GetLength(1);
for (int i = 0; i < A.GetLength; i++)
{
richTextBox1.AppendText(A[rows, columns] + " ");
{
richTextBox1.AppendText("/n");
}
}
}
Clearly something isn't working here, I just need to figure out what is it...it's a for loop, my nemesis.
