Firebird ADO.NET Provider SDK Documentation - v1.7

StringParser.StartsWith Method 

Indicates if the string specified as source starts with the token string.

[Visual Basic]
Public Shared Function StartsWith( _
   ByVal source As String, _
   ByVal token As String, _
   ByVal ignoreCase As Boolean _
) As Boolean
[C#]
public static bool StartsWith(
   string source,
   string token,
   bool ignoreCase
);

Parameters

source
The source string.
token
The token that is intended to find.
ignoreCase
Indicated is char case should be ignored.

Return Value

Returns true if the token precedes the source.

See Also

StringParser Class | FirebirdSql.Data.Firebird.Isql Namespace