Namespace:  NHibernate.Util
Assembly:  NHibernate (in NHibernate.dll)

Syntax

Visual Basic (Declaration)
Public Shared Function IndexOfCaseInsensitive ( _
	source As String, _
	value As String, _
	startIndex As Integer, _
	count As Integer _
) As Integer
C#
public static int IndexOfCaseInsensitive(
	string source,
	string value,
	int startIndex,
	int count
)
Visual C++
public:
static int IndexOfCaseInsensitive(
	String^ source, 
	String^ value, 
	int startIndex, 
	int count
)
JavaScript
NHibernate.Util.StringHelper.indexOfCaseInsensitive = function(source, value, startIndex, count);

Parameters

source
Type: System..::.String
value
Type: System..::.String
startIndex
Type: System..::.Int32
count
Type: System..::.Int32

See Also