MonobjcMonobjc Documented Class Library
IsEqualToDictionary Method (otherDictionary)
NamespacesMonobjc.FoundationNSDictionaryIsEqualToDictionary(NSDictionary)

Returns a Boolean value that indicates whether the contents of the receiving dictionary are equal to the contents of another given dictionary.

Original signature is '- (BOOL)isEqualToDictionary:(NSDictionary *)otherDictionary'

Available in Mac OS X v10.0 and later.

Declaration Syntax
C#Visual BasicVisual C++
public virtual bool IsEqualToDictionary(
	NSDictionary otherDictionary
)
Public Overridable Function IsEqualToDictionary ( _
	otherDictionary As NSDictionary _
) As Boolean
public:
virtual bool IsEqualToDictionary(
	NSDictionary^ otherDictionary
)
Parameters
otherDictionary (NSDictionary)
The dictionary with which to compare the receiving dictionary.
Return Value
YES if the contents of otherDictionary are equal to the contents of the receiving dictionary, 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)