MonobjcMonobjc Documented Class Library
IsCaseInsensitiveLike Method (aString)
NamespacesMonobjc.FoundationINSComparisonMethodsIsCaseInsensitiveLike(NSString)

Returns a Boolean value that indicates whether receiver is considered to be “like” a given string when the case of characters in the receiver is ignored.

Original signature is '- (BOOL)isCaseInsensitiveLike:(NSString *)aString'

Available in Mac OS X v10.0 and later.

Declaration Syntax
C#Visual BasicVisual C++
bool IsCaseInsensitiveLike(
	NSString aString
)
Function IsCaseInsensitiveLike ( _
	aString As NSString _
) As Boolean
bool IsCaseInsensitiveLike(
	NSString^ aString
)
Parameters
aString (NSString)
The string with which to compare the receiver.
Return Value
YES if the receiver is considered to be “like” aString when the case of characters in the receiver is ignored, 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)