CultureAndRegionInfoBuilder.TextInfo Property

Definition

Gets or sets the TextInfo object that defines the writing system associated with this custom culture.

public System.Globalization.TextInfo TextInfo { get; set; }

Property Value

The object that defines the writing system associated with this custom culture.

Exceptions

This operation is not supported for replacement cultures.

The value in a set operation is null.

The number of characters in a list separator does not range from 0 to 3.

Remarks

The CultureAndRegionInfoBuilder.TextInfo property provides culture-specific casing information for strings. It corresponds to the CultureInfo.TextInfo 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