Determines whether the end of this instance matches the specified String.

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

Syntax

Visual Basic (Declaration)
Public Function EndsWith ( _
	value As String _
) As Boolean
C#
public bool EndsWith(
	string value
)
Visual C++
public:
bool EndsWith(
	String^ value
)
JavaScript
function endsWith(value);

Parameters

value
Type: System..::.String
A string to seek at the end.

Return Value

trueTruetruetrue (True in Visual Basic) if the end of this instance matches value; otherwise, falseFalsefalsefalse (False in Visual Basic)

See Also