StringExtrasSplitStrings Method |
Split a long string into separate lines based on a max length
Namespace: ANDREICSLIB.ClassExtrasAssembly: ANDREICSLIB (in ANDREICSLIB.dll) Version: 1.0.0.0 (1.0.0.0)
Syntaxpublic static List<string> SplitStrings(
string instr,
int max
)
Public Shared Function SplitStrings (
instr As String,
max As Integer
) As List(Of String)
public:
static List<String^>^ SplitStrings(
String^ instr,
int max
)
static member SplitStrings :
instr : string *
max : int -> List<string>
Parameters
- instr
- Type: SystemString
- max
- Type: SystemInt32
Return Value
Type:
ListString
See Also