StringComparer Class
TOC
Collapse the table of content
Expand the table of content

StringComparer Class

[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]

Represents a string comparison operation that uses specific case and culture-based or ordinal comparison rules.

System::Object
  System::StringComparer

Namespace:  System
Assembly:  mscorlib (in mscorlib.dll)

No code example is currently available or this language may not be supported.

The StringComparer type exposes the following members.

  NameDescription
Protected methodStringComparerInitializes a new instance of the StringComparer class.
Top

  NameDescription
Public propertyStatic memberCurrentCultureGets a StringComparer object that performs a case-sensitive string comparison using the word comparison rules of the current culture.
Public propertyStatic memberCurrentCultureIgnoreCaseGets a StringComparer object that performs case-insensitive string comparisons using the word comparison rules of the current culture.
Public propertyStatic memberInvariantCultureGets a StringComparer object that performs a case-sensitive string comparison using the word comparison rules of the invariant culture.
Public propertyStatic memberInvariantCultureIgnoreCaseGets a StringComparer object that performs a case-insensitive string comparison using the word comparison rules of the invariant culture.
Public propertyStatic memberOrdinalGets a StringComparer object that performs a case-sensitive ordinal string comparison.
Public propertyStatic memberOrdinalIgnoreCaseGets a StringComparer object that performs a case-insensitive ordinal string comparison.
Top

  NameDescription
Public methodCompare(Object, Object)When overridden in a derived class, compares two objects and returns an indication of their relative sort order.
Public methodCompare(String, String)When overridden in a derived class, compares two strings and returns an indication of their relative sort order.
Public methodStatic memberCreateCreates a StringComparer object that compares strings according to the rules of a specified culture.
Public methodEquals(Object)Determines whether the specified Object is equal to the current Object. (Inherited from Object.)
Public methodEquals(Object, Object)When overridden in a derived class, indicates whether two objects are equal.
Public methodEquals(String, String)When overridden in a derived class, indicates whether two strings are equal.
Protected methodFinalizeAllows an object to try to free resources and perform other cleanup operations before the Object is reclaimed by garbage collection. (Inherited from Object.)
Public methodGetHashCode()Serves as a hash function for a particular type. (Inherited from Object.)
Public methodGetHashCode(Object)When overridden in a derived class, gets the hash code for the specified object.
Public methodGetHashCode(String)When overridden in a derived class, gets the hash code for the specified string.
Public methodGetTypeGets the Type of the current instance. (Inherited from Object.)
Protected methodMemberwiseCloneCreates a shallow copy of the current Object. (Inherited from Object.)
Public methodToStringReturns a string that represents the current object. (Inherited from Object.)
Top

An object derived from the StringComparer class embodies string-based comparison, equality, and hash code operations that take into account both case and culture-specific comparison rules. You can use the StringComparer class to create a type-specific comparison to sort the elements in a generic collection.

A comparison operation that is represented by the StringComparer class is defined to be either case-sensitive or case-insensitive, and use either word (culture-sensitive) or ordinal (culture-insensitive) comparison rules. For more information about word and ordinal comparison rules, see System.Globalization::CompareOptions.

Implemented Properties

You might be confused about how to use the StringComparer class properties because of a seeming contradiction. The StringComparer class is declared abstract (MustInherit in Visual Basic), which means its members can be invoked only on an object of a class derived from the StringComparer class. The contradiction is that each property of the StringComparer class is declared static (Shared in Visual Basic), which means the property can be invoked without first creating a derived class.

You can call a StringComparer property directly because each property actually returns an instance of an anonymous class that is derived from the StringComparer class. Consequently, the type of each property value is StringComparer, which is the base class of the anonymous class, not the type of the anonymous class itself. Each StringComparer class property returns a StringComparer object that supports predefined case and comparison rules.

The following code example demonstrates the properties and the Create method of the StringComparer class. The example illustrates how different StringComparer objects sort three versions of the Latin letter I.

No code example is currently available or this language may not be supported.

Windows Phone OS

Supported in: 8.1, 8.0, 7.1, 7.0

Windows Phone

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

Show:
© 2017 Microsoft