Hi
i have an array i am allotting array values through a loop now i want to add each value of an array in a text box. here is my code
private void btnFramCode_Click(object sender, EventArgs e)
{
int Row = Convert.ToInt32(tbRows.Text);
int Column = Convert.ToInt32(tbColumns.Text);
int[,] arr = new int[Column, Row];
for (int k = 0; k < Column; k++)
{
for (int l = 0; l < Row; l++)
{
arr[k,l] = 0;
tbArray.Text = ;// tbArray is a textbox should i use this here if yes what should i write after assignment
}
}