我无法使用 Array 对时间求和。我在 gridView 中有一个列,它存储了工人的额外时间,我想要总和,想要得到总小时数和分钟数,请问该怎么做?
TimeSpan p = new TimeSpan();
for ( int i = 0; i < grid_horas.Rows.Count; i++ )
{
//TimeSpan t2 = TimeSpan.Parse(grid_horas.Rows[i].Cells[7].Value.ToString());
}