使用 TimeSpan 方法获取昨天日期的 C# 程序
TimeSpan 是一个结构体,用于表示时间间隔,用于测量分钟、小时、天的正数和负数。仅当时间与某个指定日期无关时,它也用于表示一天中的时间。在本文中,我们将使用 TimeSpan 结构查找昨天的日期。
句法:
TimeSpan variable_name = new TimeSpan();
我们可以使用以下方法获取特定日期的日、月和年:
- datetime.Day:用于查找此实例所代表的日期。
- datetime.Month:用于查找该实例所代表的日期的月份。
- datetime.Year:用于查找该实例表示的日期的年份。
例子:
C#
// C# program to find the date of
// yesterday using TimeSpan Method
using System;
class GFG{
static void Main()
{
// Subtract todays date with timespan
// to find the yesterday date
DateTime yesterday = DateTime.Now - new TimeSpan(1, 0, 0, 0);
// Find the day, month and year of the yesterday's date
Console.WriteLine("Yesterday Date: {0}/{1}/{2}",
yesterday.Day, yesterday.Month,
yesterday.Year);
}
}
输出:
Yesterday Date: 28/11/2021
说明:在上面的例子中,首先,我们用时间跨度为 1 的日期减去今天的日期,找到昨天的日期。这里,我们使用 DateTime.Now 方法得到今天的日期。以 DD/MM/YY 格式显示昨天的日期和月份和年份。