MonobjcMonobjc Documented Class Library
LaterDate Method (anotherDate)
NamespacesMonobjc.FoundationNSDateLaterDate(NSDate)

Returns the later of the receiver and another given date.

Original signature is '- (NSDate *)laterDate:(NSDate *)anotherDate'

Available in Mac OS X v10.0 and later.

Declaration Syntax
C#Visual BasicVisual C++
public virtual NSDate LaterDate(
	NSDate anotherDate
)
Public Overridable Function LaterDate ( _
	anotherDate As NSDate _
) As NSDate
public:
virtual NSDate^ LaterDate(
	NSDate^ anotherDate
)
Parameters
anotherDate (NSDate)
The date with which to compare the receiver.
Return Value
The later of the receiver and anotherDate, determined using timeIntervalSinceDate:. If the receiver and anotherDate represent the same date, returns the receiver.
Version Information
  • Available in Monobjc Bridge: 10.6 (For Mac OS X 10.6 and later), 10.5 (For Mac OS X 10.5 and later)

Assembly: Monobjc.Foundation (Module: Monobjc.Foundation)