Count number between two date (C#, CultureInfo)

孤街醉人 提交于 2019-12-13 09:34:58

问题


I trying to get Number between 2 dates:

DateTime base;
....
base = DateTime.ParseExact(pos[13], "dd/MM/yyyy HH:mm:ss", CultureInfo.InvariantCulture);
//example base =  2014-06-21 17:00:00

DateTime col_N;

//then some for loop
col_N = DateTime.ParseExact(pos[k], "dd/MM/yyyy HH:mm:ss", CultureInfo.InvariantCulture); 
//example col_N = 2014-06-22 00:00:00

To get days between I'm doing like below:

int date_diff = (col_N - base).Days;

but it return me 0.

Also, when I checked:

string diff_dat2 = (col_N - base).TotalDays.ToString();

I got 0,291666666666667.

How to correct it to get 1 day ?


回答1:


I am not sure what exactly you are trying to achieve but I assume you want to get difference in days in dates only excluding the time.

To achieve this you need to remove the time component of DateTime by doing .Date:

int date_diff = (col_N.Date - base.Date).Days;

TotalDays is correct in your example as there is no full date between the two times that you have, but if you operate only in dates, you will get your answer just right.



来源:https://stackoverflow.com/questions/56968667/count-number-between-two-date-c-cultureinfo

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!