StringPrototype::localeCompare Method (Object^, Object^)

 

This API supports the product infrastructure and is not intended to be used directly from your code.

Compares the two specified strings and returns an integer that indicates the lexical relationship between them.

Namespace:   Microsoft.JScript
Assembly:  Microsoft.JScript (in Microsoft.JScript.dll)

public:
[JSFunctionAttribute(JSFunctionAttributeEnum::HasThisObject, 
	JSBuiltin::String_localeCompare)]
static int localeCompare(
	Object^ thisob,
	Object^ thatob
)

Parameters

thisob
Type: System::Object^

The object that this method is acting upon.

thatob
Type: System::Object^

The string to compare to thisob.

Return Value

Type: System::Int32

A negative value when thisob is less than thatob; zero when thisob equals thatob; a positive value when thisob is greater than thatob.

.NET Framework
Available since 1.1
Return to top
Show: