MonobjcMonobjc Documented Class Library
IsEqualToDate Method (anotherDate)
NamespacesMonobjc.FoundationNSDateIsEqualToDate(NSDate)

Returns a Boolean value that indicates whether a given object is an NSDate object and exactly equal the receiver.

Original signature is '- (BOOL)isEqualToDate:(NSDate *)anotherDate'

Available in Mac OS X v10.0 and later.

Declaration Syntax
C#Visual BasicVisual C++
public virtual bool IsEqualToDate(
	NSDate anotherDate
)
Public Overridable Function IsEqualToDate ( _
	anotherDate As NSDate _
) As Boolean
public:
virtual bool IsEqualToDate(
	NSDate^ anotherDate
)
Parameters
anotherDate (NSDate)
The date to compare with the receiver.
Return Value
YES if the anotherDate is an NSDate object and is exactly equal to the receiver, otherwise NO.
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)