2014-04-11 19 views

回答

4

使用TimeSpan對象。

Dim ts As TimeSpan 
If TimeSpan.TryParse("01:34:00", ts) Then 
MessageBox.Show(ts.TotalMinutes.ToString) 
End If