DateDeconstruct(Int32, Int32) Method

Extracts the year and month in a single call.

Definition

Namespace: Austra.Library.Dates
Assembly: Austra.Library (in Austra.Library.dll) Version: 2.5.0+44e7797405725ef3cf24b3ff0eba94ce6c649601
C#
public void Deconstruct(
	out int year,
	out int month
)

Parameters

year  Int32
The year of the date.
month  Int32
The month of the date.

Remarks

It only saves a division.

See Also