LocalDateTime.WithMonth(Int32) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Returns a copy of this LocalDateTime with the month-of-year altered.
[Android.Runtime.Register("withMonth", "(I)Ljava/time/LocalDateTime;", "", ApiSince=26)]
public Java.Time.LocalDateTime? WithMonth(int month);
[<Android.Runtime.Register("withMonth", "(I)Ljava/time/LocalDateTime;", "", ApiSince=26)>]
member this.WithMonth : int -> Java.Time.LocalDateTime
Parameters
- month
- Int32
the month-of-year to set in the result, from 1 (January) to 12 (December)
Returns
a LocalDateTime based on this date-time with the requested month, not null
- Attributes
Remarks
Returns a copy of this LocalDateTime with the month-of-year altered. The time does not affect the calculation and will be the same in the result. If the day-of-month is invalid for the year, it will be changed to the last valid day of the month. This instance is immutable and unaffected by this method call.
Java reference for java.time.LocalDateTime.withMonth.