📜  使用 TimeSpan 方法获取明天日期的 C# 程序

📅  最后修改于: 2022-05-13 01:55:08.590000             🧑  作者: Mango

使用 TimeSpan 方法获取明天日期的 C# 程序

TimeSpan 是一个结构体,用于表示时间间隔,用于测量分钟、小时、天的正数和负数。仅当时间与某个指定日期无关时,它也用于表示一天中的时间。在本文中,我们将使用 TimeSpan 结构找到明天的日期。

句法:

我们可以使用以下方法获取特定日期的日、月和年:

  • datetime.Day:用于查找此实例所代表的日期。
  • datetime.Month:用于查找该实例所代表的日期的月份。
  • datetime.Year:用于查找该实例表示的日期的年份。

例子:

C#
// C# program to find tomorrow's date
// Using TimeSpan Method
using System;
  
class GFG{
  
static void Main()
{
      
    // Add todays date with timespan of 1 to get
    // tomorrow date
    DateTime tomorrowDate = DateTime.Now + new TimeSpan(1, 0, 0, 0);
      
    // Displaying day, month and year of tomorrow's date
    Console.WriteLine("tomorrow Date: {0}/{1}/{2}",
                      tomorrowDate.Day, tomorrowDate.Month,
                      tomorrowDate.Year);
}
}


输出:

tomorrow Date: 30/11/2021

说明:在上面的例子中,首先,我们通过将今天的日期加上时间跨度为 1 来找到明天的日期。这里,我们使用 DateTime.Now 方法得到今天的日期。以 DD/MM/YY 格式显示明天的日期和月份和年份。