テーブル内で、any1は指定された行を選択し、指定した列のTimeデータを取得し、そのデータをTimeSpanに入れますか?テーブルからTimeデータを抽出し、TimeSpanに配置
DataRow[] selectIDRow = RetailCamDataSet1.Tables["smBranchWorkingDayInfo"].Select("ID=" + ID);
foreach (DataRow row in getTimeDifference)
{
TimeSpan startTime = new TimeSpan(); //Need to put the data into the bracket instead of using hard code
TimeSpan endTime = new TimeSpan(20, 00, 00); //Hard coded
TimeSpan timeDifference = new TimeSpan();
timeDifference = endTime.Subtract(startTime);
double minutes = timeDifference.TotalMinutes;
normalCount = minutes/15;
指定した列の時刻データはどのような形式ですか? –
時間:分:秒 hh:mm:ss – hakunabean