Npgsql Api Docs

BitString.Substring Method (Int32, Int32)

Returns a substring of this string.

[Visual Basic]
Overloads Public Function Substring( _
   ByVal start As Integer, _
   ByVal length As Integer _
) As BitString
[C#]
public BitString Substring(
   int start,
   int length
);

Parameters

start
The position to start from, must be between 0 and the length of the string.
length
The length of the string to return, must be greater than zero, and may not be so large that the start + length exceeds the bounds of this instance.

Return Value

The Bitstring identified

See Also

BitString Class | NpgsqlTypes Namespace | BitString.Substring Overload List