我試圖做一個平均每分鐘死亡錯誤的速度。這是我的代碼現在,但它拋出一個錯誤,說字符串輸入格式是錯誤的。有什麼建議?我使用C#作爲WPF。平均速度wpf
//Score is the number of bugs hit
score.Text = (_killings * 1).ToString();
//Change it to integer
int x = Int32.Parse(score.Text);
int y = Int32.Parse(TBCountdown.Text); - this is where the error is showing
//Get the average speed by dividing number of bugs hit during the time
int average = (x/y);
//Displaying the average score by converting int to string
averagescore.Text = average.ToString();
欲瞭解更多信息,我使用調度計時器,這是我的計時器的代碼。
TBCountdown.Text = string.Format("00:0{0}:0{1}", time/60, time % 60);
您如何期待將TBCountdown.Text轉換爲Integer,它看起來像格式化爲時間。您希望將該價值的哪一部分轉換爲您的y數據點? –
只是分鐘和秒。 – user3098072