2017年11月28日 星期二

How get yesterday and tomorrow datetime in c#

You can find this info right in the API reference.
var today = DateTime.Now;
var tomorrow = today.AddDays(1);
var yesterday = today.AddDays(-1);

from : https://stackoverflow.com/questions/8203900/how-get-yesterday-and-tomorrow-datetime-in-c-sharp

沒有留言:

張貼留言