GregorianCalendar.MinSupportedDateTime 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
GregorianCalendar 형식에서 지원하는 시작 날짜와 시간을 가져옵니다.
public:
virtual property DateTime MinSupportedDateTime { DateTime get(); };
public override DateTime MinSupportedDateTime { get; }
[System.Runtime.InteropServices.ComVisible(false)]
public override DateTime MinSupportedDateTime { get; }
member this.MinSupportedDateTime : DateTime
[<System.Runtime.InteropServices.ComVisible(false)>]
member this.MinSupportedDateTime : DateTime
Public Overrides ReadOnly Property MinSupportedDateTime As DateTime
속성 값
0001년 1월 1일 C.E.의 첫 번째 순간이며 DateTime.MinValue와 동일한 형식에서 지원 GregorianCalendar 되는 가장 빠른 날짜 및 시간입니다.
- 특성
예제
다음 코드 예제에서는 달력의 최소값과 최대값을 가져옵니다.
using namespace System;
using namespace System::Globalization;
int main()
{
// Create an instance of the calendar.
GregorianCalendar^ myCal = gcnew GregorianCalendar;
Console::WriteLine( myCal );
// Display the MinSupportedDateTime.
DateTime myMin = myCal->MinSupportedDateTime;
Console::WriteLine( "MinSupportedDateTime: {0:D2}/{1:D2}/{2:D4}", myCal->GetMonth( myMin ), myCal->GetDayOfMonth( myMin ), myCal->GetYear( myMin ) );
// Display the MaxSupportedDateTime.
DateTime myMax = myCal->MaxSupportedDateTime;
Console::WriteLine( "MaxSupportedDateTime: {0:D2}/{1:D2}/{2:D4}", myCal->GetMonth( myMax ), myCal->GetDayOfMonth( myMax ), myCal->GetYear( myMax ) );
}
/*
This code produces the following output.
System.Globalization.GregorianCalendar
MinSupportedDateTime: 01/01/0001
MaxSupportedDateTime: 12/31/9999
*/
using System;
using System.Globalization;
public class SamplesCalendar {
public static void Main() {
// Create an instance of the calendar.
GregorianCalendar myCal = new GregorianCalendar();
Console.WriteLine( myCal.ToString() );
// Display the MinSupportedDateTime.
DateTime myMin = myCal.MinSupportedDateTime;
Console.WriteLine( "MinSupportedDateTime: {0:D2}/{1:D2}/{2:D4}", myCal.GetMonth(myMin), myCal.GetDayOfMonth(myMin), myCal.GetYear(myMin) );
// Display the MaxSupportedDateTime.
DateTime myMax = myCal.MaxSupportedDateTime;
Console.WriteLine( "MaxSupportedDateTime: {0:D2}/{1:D2}/{2:D4}", myCal.GetMonth(myMax), myCal.GetDayOfMonth(myMax), myCal.GetYear(myMax) );
}
}
/*
This code produces the following output.
System.Globalization.GregorianCalendar
MinSupportedDateTime: 01/01/0001
MaxSupportedDateTime: 12/31/9999
*/
Imports System.Globalization
Public Class SamplesCalendar
Public Shared Sub Main()
' Create an instance of the calendar.
Dim myCal As New GregorianCalendar()
Console.WriteLine(myCal.ToString())
' Display the MinSupportedDateTime.
Dim myMin As DateTime = myCal.MinSupportedDateTime
Console.WriteLine("MinSupportedDateTime: {0:D2}/{1:D2}/{2:D4}", myCal.GetMonth(myMin), myCal.GetDayOfMonth(myMin), myCal.GetYear(myMin))
' Display the MaxSupportedDateTime.
Dim myMax As DateTime = myCal.MaxSupportedDateTime
Console.WriteLine("MaxSupportedDateTime: {0:D2}/{1:D2}/{2:D4}", myCal.GetMonth(myMax), myCal.GetDayOfMonth(myMax), myCal.GetYear(myMax))
End Sub
End Class
'This code produces the following output.
'
'System.Globalization.GregorianCalendar
'MinSupportedDateTime: 01/01/0001
'MaxSupportedDateTime: 12/31/9999
설명
MinSupportedDateTime 0001년 1월 1일 C.E.의 첫 번째 순간이지만, 그레고리오력은 1582년 10월 15일까지 도입되지 않았으며 유럽 대륙과 전 세계적으로 채택이 느렸습니다. 그들은 양력 달력을 채택 할 때까지, 유럽, 미국, 호주 대륙의 대부분의 문화권은 클래스에 의해 표현되는 줄리안 달력을 JulianCalendar 사용했다.
적용 대상
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET