本文整理匯總了C#中System.DateTime.Year屬性的典型用法代碼示例。如果您正苦於以下問題:C# DateTime.Year屬性的具體用法?C# DateTime.Year怎麽用?C# DateTime.Year使用的例子?那麽, 這裏精選的屬性代碼示例或許可以為您提供幫助。您也可以進一步了解該屬性所在類System.DateTime
的用法示例。
在下文中一共展示了DateTime.Year屬性的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。
示例1:
System.DateTime moment = new System.DateTime(
1999, 1, 13, 3, 57, 32, 11);
// Year gets 1999.
int year = moment.Year;
// Month gets 1 (January).
int month = moment.Month;
// Day gets 13.
int day = moment.Day;
// Hour gets 3.
int hour = moment.Hour;
// Minute gets 57.
int minute = moment.Minute;
// Second gets 32.
int second = moment.Second;
// Millisecond gets 11.
int millisecond = moment.Millisecond;
示例2: Main
//引入命名空間
using System;
using System.Globalization;
using System.Threading;
public class YearMethodExample
{
public static void Main()
{
// Initialize date variable and display year
DateTime date1 = new DateTime(2008, 1, 1, 6, 32, 0);
Console.WriteLine(date1.Year); // Displays 2008
// Set culture to th-TH
Thread.CurrentThread.CurrentCulture = new CultureInfo("th-TH");
Console.WriteLine(date1.Year); // Displays 2008
// display year using current culture's calendar
Calendar thaiCalendar = CultureInfo.CurrentCulture.Calendar;
Console.WriteLine(thaiCalendar.GetYear(date1)); // Displays 2551
// display year using Persian calendar
PersianCalendar persianCalendar = new PersianCalendar();
Console.WriteLine(persianCalendar.GetYear(date1)); // Displays 1386
}
}
示例3: DisplayDateTime
//引入命名空間
using System;
class MainClass {
public static void DisplayDateTime(string name, DateTime myDateTime) {
Console.WriteLine(name + " = " + myDateTime);
Console.WriteLine(name + ".Year = " + myDateTime.Year);
Console.WriteLine(name + ".Month = " + myDateTime.Month);
Console.WriteLine(name + ".Day = " + myDateTime.Day);
Console.WriteLine(name + ".Hour = " + myDateTime.Hour);
Console.WriteLine(name + ".Minute = " + myDateTime.Minute);
Console.WriteLine(name + ".Second = " + myDateTime.Second);
Console.WriteLine(name + ".Millisecond = " + myDateTime.Millisecond);
Console.WriteLine(name + ".Ticks = " + myDateTime.Ticks);
}
public static void Main()
{
int year = 2002;
int month = 12;
int day = 25;
DateTime myDateTime = new DateTime(year, month, day);
DisplayDateTime("myDateTime", myDateTime);
}
}