我希望在文本框中显示一个文本数组,在用逗号分割它之后,我将一堆数字传递到 textbox1 并用逗号分割它,我如何按降序对数字进行排序。这是我到目前为止的方法
private void btnCalc_Click(object sender, EventArgs e)
{
//string A = txtInput.Text;
string[] arrText = txtInput.Text.Split(',');
int[] newOne = new int[]{};
foreach (string r in arrText)
{
}
txtOutput.AppendText( );
}