LocalDateTime.MinusMinutes(Int64) 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 specified number of minutes subtracted.
[Android.Runtime.Register("minusMinutes", "(J)Ljava/time/LocalDateTime;", "", ApiSince=26)]
public Java.Time.LocalDateTime? MinusMinutes(long minutes);
[<Android.Runtime.Register("minusMinutes", "(J)Ljava/time/LocalDateTime;", "", ApiSince=26)>]
member this.MinusMinutes : int64 -> Java.Time.LocalDateTime
Parameters
- minutes
- Int64
the minutes to subtract, may be negative
Returns
a LocalDateTime based on this date-time with the minutes subtracted, not null
- Attributes
Remarks
Returns a copy of this LocalDateTime with the specified number of minutes subtracted. This instance is immutable and unaffected by this method call.
Java reference for java.time.LocalDateTime.minusMinutes.