我有一个字符串(stringMess),我将反应时间(你需要点击按钮多长时间)保存在一个字符串中。现在我想在标签中获得最快和最低的时间,所以我必须对字符串进行排序。但我该怎么做?(我所做的一切直到给我一个错误:()
public partial class Form1 : Form
{
//...
int Zeit = 0;
string Mess;
int Anzahl;
//...
private void btnRot_Click(object sender, EventArgs e)
{
// a timer starts and when you click on the button,
// the timer stops and write the time in the stringMess
Mess = Mess + Zeit + " , ";
Anzahl = Anzahl + 1;
//...
}
代码不是完整的...