Logo

Programming-Idioms

History of Idiom 184 > diff from v7 to v8

Edit summary for version 8 by Cellery72:
New Csharp implementation by user [Cellery72]

Version 7

2019-09-01, 08:59:37

Version 8

2019-09-26, 13:40:31

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);