Logo

Programming-Idioms

History of Idiom 184 > diff from v13 to v14

Edit summary for version 14 by AFS:
[Csharp] Now will keep time of day, Today is just the date

Version 13

2019-09-26, 13:56:35

Version 14

2019-09-26, 13:56:56

Idiom #184 Tomorrow

Assign to variable t a string representing the day, month and year of the day after the current date.

Idiom #184 Tomorrow

Assign to variable t a string representing the day, month and year of the day after the current date.

Code
DateTime t = DateTime.Now.AddDays(1);
Code
DateTime t = DateTime.Today.AddDays(1);