SoapYearMonth 생성자
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
SoapYearMonth 클래스의 새 인스턴스를 초기화합니다.
오버로드
SoapYearMonth() |
SoapYearMonth 클래스의 새 인스턴스를 초기화합니다. |
SoapYearMonth(DateTime) |
지정된 SoapYearMonth 개체를 사용하여 DateTime 클래스의 새 인스턴스를 초기화합니다. |
SoapYearMonth(DateTime, Int32) |
지정된 SoapYearMonth 개체 및 DateTime가 양수 값인지 음수 값인지 나타내는 정수를 사용하여 Value 클래스의 새 인스턴스를 초기화합니다. |
SoapYearMonth()
SoapYearMonth 클래스의 새 인스턴스를 초기화합니다.
public:
SoapYearMonth();
public SoapYearMonth ();
Public Sub New ()
예제
다음 코드 예제에서는이 생성자를 사용 하는 방법을 보여 줍니다.
// Create a SoapYearMonth object.
SoapYearMonth^ year = gcnew SoapYearMonth;
year->Value = DateTime::Now;
Console::WriteLine( "The year is {0}.", year );
// Create a SoapYearMonth object.
SoapYearMonth yearMonth = new SoapYearMonth();
yearMonth.Value = DateTime.Now;
Console.WriteLine("The yearMonth is {0}.", yearMonth.ToString());
적용 대상
SoapYearMonth(DateTime)
지정된 SoapYearMonth 개체를 사용하여 DateTime 클래스의 새 인스턴스를 초기화합니다.
public:
SoapYearMonth(DateTime value);
public SoapYearMonth (DateTime value);
new System.Runtime.Remoting.Metadata.W3cXsd2001.SoapYearMonth : DateTime -> System.Runtime.Remoting.Metadata.W3cXsd2001.SoapYearMonth
Public Sub New (value As DateTime)
매개 변수
예제
다음 코드 예제에서는이 생성자를 사용 하는 방법을 보여 줍니다.
// Create a SoapYearMonth object.
SoapYearMonth^ year = gcnew SoapYearMonth( DateTime::Now );
Console::WriteLine( "The year is {0}.", year );
// Create a SoapYearMonth object.
SoapYearMonth yearMonth = new SoapYearMonth(DateTime.Now);
Console.WriteLine("The yearMonth is {0}.", yearMonth.ToString());
적용 대상
SoapYearMonth(DateTime, Int32)
지정된 SoapYearMonth 개체 및 DateTime가 양수 값인지 음수 값인지 나타내는 정수를 사용하여 Value 클래스의 새 인스턴스를 초기화합니다.
public:
SoapYearMonth(DateTime value, int sign);
public SoapYearMonth (DateTime value, int sign);
new System.Runtime.Remoting.Metadata.W3cXsd2001.SoapYearMonth : DateTime * int -> System.Runtime.Remoting.Metadata.W3cXsd2001.SoapYearMonth
Public Sub New (value As DateTime, sign As Integer)
매개 변수
- sign
- Int32
value
가 양수인지 여부를 나타내는 정수입니다.
예제
다음 코드 예제에서는이 생성자를 사용 하는 방법을 보여 줍니다.
// Create a SoapYearMonth object with a positive sign.
SoapYearMonth^ year = gcnew SoapYearMonth( DateTime::Now,1 );
Console::WriteLine( "The year is {0}.", year );
// Create a SoapYearMonth object with a positive sign.
SoapYearMonth yearMonth = new SoapYearMonth(DateTime.Now, 1);
Console.WriteLine("The yearMonth is {0}.", yearMonth.ToString());
설명
음수를 나타내는 0 보다 작은의 정수 sign
합니다.
적용 대상
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET