System.WideString.operator <

From RAD Studio API Documentation
Jump to: navigation, search

C++

bool operator < (const WideString& rhs) const;
bool operator < (const BSTR w) const;
bool operator < (const char* s) const

Properties

Type Visibility Source Unit Parent
function public wstring.h System WideString


Description

Compares two strings.

The operator < returns True if this WideString is less than rhs, False otherwise. The strings are compared using the numerical value of each character, with case sensitivity.

See Also