文字列 (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;
//...
}
コードはすべてではありません...