System.Generics.Defaults.TIStringComparer

From RAD Studio API Documentation
Jump to: navigation, search

System.Generics.Defaults.TCustomComparerSystem.Generics.Defaults.TSingletonImplementationSystem.TNoRefCountObjectSystem.TObjectTIStringComparer

Delphi

TIStringComparer = class(TCustomComparer<string>)

C++

class PASCALIMPLEMENTATION TIStringComparer : public TCustomComparer__1<System::UnicodeString>

Properties

Type Visibility Source Unit Parent
class public
System.Generics.Defaults.pas
System.Generics.Defaults.hpp
System.Generics.Defaults System.Generics.Defaults

Description

TIStringComparer is a case-insensitive string comparer.

TIStringComparer is a case-insensitive string comparer that can be used in generic collections. TIStringComparer uses binary comparison of upper-cased strings.

Use the Ordinal method to get a TStringComparer object that performs a case-sensitive string comparison.

See Also