本文整理匯總了C#中System.DateTime.DayOfYear屬性的典型用法代碼示例。如果您正苦於以下問題:C# DateTime.DayOfYear屬性的具體用法?C# DateTime.DayOfYear怎麽用?C# DateTime.DayOfYear使用的例子?那麽, 這裏精選的屬性代碼示例或許可以為您提供幫助。您也可以進一步了解該屬性所在類System.DateTime
的用法示例。
在下文中一共展示了DateTime.DayOfYear屬性的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。
示例1: Main
//引入命名空間
using System;
public class Example
{
public static void Main()
{
DateTime dec31 = new DateTime(2010, 12, 31);
for (int ctr = 0; ctr <= 10; ctr++) {
DateTime dateToDisplay = dec31.AddYears(ctr);
Console.WriteLine("{0:d}: day {1} of {2} {3}", dateToDisplay,
dateToDisplay.DayOfYear,
dateToDisplay.Year,
DateTime.IsLeapYear(dateToDisplay.Year) ?
"(Leap Year)" : "");
}
}
}
輸出:
12/31/2010: day 365 of 2010 12/31/2011: day 365 of 2011 12/31/2012: day 366 of 2012 (Leap Year) 12/31/2013: day 365 of 2013 12/31/2014: day 365 of 2014 12/31/2015: day 365 of 2015 12/31/2016: day 366 of 2016 (Leap Year) 12/31/2017: day 365 of 2017 12/31/2018: day 365 of 2018 12/31/2019: day 365 of 2019 12/31/2020: day 366 of 2020 (Leap Year)