CultureAndRegionInfoBuilder.CompareInfo Property

Definition

Gets or sets the CompareInfo object that defines how to compare strings for the culture.

C#
public System.Globalization.CompareInfo CompareInfo { get; set; }

Property Value

The CompareInfo object that defines how to compare strings for the culture.

Exceptions

In a set operation the assigned value is null.

This custom culture is an override of a built-in culture.

Remarks

The CultureAndRegionInfoBuilder.CompareInfo property corresponds to the CultureInfo.CompareInfo property.

The TextInfo and CompareInfo objects that are assigned to the TextInfo and CompareInfo properties both support culture-sensitive and case-sensitive string comparison. The CompareInfo object also has methods that include a CompareOptions parameter that supports culture-sensitive, case-insensitive comparison. These two properties should be assigned TextInfo and CompareInfo objects that represent the same locale.

Applies to

Product Versions
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1

See also