Determines whether the beginning of this SqlString matches the specified System.String, using case-insensitive comparison.

Namespace: NHibernate.SqlCommand
Assembly: NHibernate (in NHibernate.dll) Version: 3.2.0.4000 (3.2.0.4000)

Syntax

C#
public bool StartsWithCaseInsensitive(
	string value
)
Visual Basic
Public Function StartsWithCaseInsensitive ( _
	value As String _
) As Boolean
Visual C++
public:
bool StartsWithCaseInsensitive(
	String^ value
)

Parameters

value
Type: System..::..String
The System.String to seek

Return Value

true if the SqlString starts with the value.

See Also