다음을 통해 공유


SoapYearMonth 생성자

정의

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)

매개 변수

value
DateTime

현재 인스턴스를 초기화할 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)

매개 변수

value
DateTime

현재 인스턴스를 초기화할 DateTime 개체입니다.

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합니다.

적용 대상