MonobjcMonobjc Documented Class Library
ComponentsJoinedByString Method (separator)
NamespacesMonobjc.FoundationNSArrayComponentsJoinedByString(NSString)

Constructs and returns an NSString object that is the result of interposing a given separator between the elements of the array.

Original signature is '- (NSString *)componentsJoinedByString:(NSString *)separator'

Available in Mac OS X v10.0 and later.

Declaration Syntax
C#Visual BasicVisual C++
public virtual NSString ComponentsJoinedByString(
	NSString separator
)
Public Overridable Function ComponentsJoinedByString ( _
	separator As NSString _
) As NSString
public:
virtual NSString^ ComponentsJoinedByString(
	NSString^ separator
)
Parameters
separator (NSString)
The string to interpose between the elements of the array.
Return Value
An NSString object that is the result of interposing separator between the elements of the array. If the array has no elements, returns an NSString object representing an empty string.
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)