Language

LocalDateTime.PlusMinutes(Int64) Method

Definition

Returns a copy of this LocalDateTime with the specified number of minutes added.

[Android.Runtime.Register("plusMinutes", "(J)Ljava/time/LocalDateTime;", "", ApiSince=26)]
public Java.Time.LocalDateTime? PlusMinutes(long minutes);
[<Android.Runtime.Register("plusMinutes", "(J)Ljava/time/LocalDateTime;", "", ApiSince=26)>]
member this.PlusMinutes : int64 -> Java.Time.LocalDateTime

Parameters

minutes
Int64

the minutes to add, may be negative

Returns

a LocalDateTime based on this date-time with the minutes added, not null

Attributes

Remarks

Returns a copy of this LocalDateTime with the specified number of minutes added. This instance is immutable and unaffected by this method call.

Java reference for java.time.LocalDateTime.plusMinutes.

Applies to