I want to display the contents of the Array from a label with a comma between each number. num1 - num6 are integer variables converted from textboxes. So Far I have done this.
int[] number = new int [6] {num1, num2, num3, num4, num5, num6};
Array.Sort(number);
lblAnswer3.Text = number.ToString();
The output of this code is: System.Int32[]
I would like the output to be: num1, num2, num3, num4, num5, num6 in ascending order.