IrcString Split Method (Byte, Int32)NetIRC2 IRC Client Library for .NET
Splits the string into a limited number of substrings based on a separator.

Namespace: NetIrc2
Assembly: NetIrc2 (in NetIrc2.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax

public IrcString[] Split(
	byte separator,
	int count
)

Parameters

separator
Type: OnlineSystem Byte
The byte to separate strings by.
count
Type: OnlineSystem Int32
The maximum number of substrings. The last substring will contain the remaining bytes.

Return Value

An array of substrings.
See Also