What I have received is: 6.00:06:00 which is obviously false as since 9th of october we had roughly speaking ~60 days. How to fix that ? Why is this happening?
Are there any other better methods to calculate difference between today and some date in a past?
dd.mm.yyyy is different than dd.MM.yyyyy
mm => minutes
MM => Month
Change the date format to represent “dd.MM.yyyy”, it will work.
And the standard way to calculate the difference is, Date1.Subtract(Date2) which returns the difference.