Logo

Programming-Idioms

History of Idiom 184 > diff from v20 to v21

Edit summary for version 21 by silver-dragon:
New VB implementation by user [silver-dragon]

Version 20

2019-09-29, 23:12:57

Version 21

2019-09-30, 20:00:08

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
Dim t As Date = DateTime.Today.AddDays(1)