MonobjcMonobjc Documented Class Library
SubarrayWithRange Method (range)
NamespacesMonobjc.FoundationNSArraySubarrayWithRange(NSRange)

Returns a new array containing the receiving array’s elements that fall within the limits specified by a given range.

Original signature is '- (NSArray *)subarrayWithRange:(NSRange)range'

Available in Mac OS X v10.0 and later.

Declaration Syntax
C#Visual BasicVisual C++
public virtual NSArray SubarrayWithRange(
	NSRange range
)
Public Overridable Function SubarrayWithRange ( _
	range As NSRange _
) As NSArray
public:
virtual NSArray^ SubarrayWithRange(
	NSRange range
)
Parameters
range (NSRange)
A range within the receiving array’s range of elements.
Return Value
A new array containing the receiving array’s elements that fall within the limits specified by range.
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)