Gets a substring from a string.

Namespace: MonoSoftware.MonoX.Utilities
Assembly: MonoX (in MonoX.dll) Version: 5.1.40.5065 (5.1.40.5065)

Syntax

C#
public static string GetSubString(
	string concatString,
	int startIndex,
	int length
)
Visual Basic
Public Shared Function GetSubString ( 
	concatString As String,
	startIndex As Integer,
	length As Integer
) As String
Visual C++
public:
static String^ GetSubString(
	String^ concatString, 
	int startIndex, 
	int length
)
F#
static member GetSubString : 
        concatString : string * 
        startIndex : int * 
        length : int -> string 

Parameters

concatString
Type: System..::..String
Concat string
startIndex
Type: System..::..Int32
Start index
length
Type: System..::..Int32
Length

Return Value

Type: String
Substring

See Also