CultureAndRegionInfoBuilder.ConsoleFallbackUICulture Property

Definition

Gets or sets an alternate user interface culture suitable for console applications when the default graphic user interface culture is inappropriate.

public:
 property System::Globalization::CultureInfo ^ ConsoleFallbackUICulture { System::Globalization::CultureInfo ^ get(); void set(System::Globalization::CultureInfo ^ value); };
public System.Globalization.CultureInfo ConsoleFallbackUICulture { get; set; }
member this.ConsoleFallbackUICulture : System.Globalization.CultureInfo with get, set
Public Property ConsoleFallbackUICulture As CultureInfo

Property Value

An alternate culture that is used to read and display text on the console.

Exceptions

In a set operation where the specified culture is not null, the ConsoleFallbackUICulture property of the specified culture is not the same as the specified culture.

Remarks

In a get operation, the ConsoleFallbackUICulture property corresponds to the GetConsoleFallbackUICulture method. Specify null in a set operation to indicate that the culture defined by the current CultureAndRegionInfoBuilder object is the alternate user interface culture. If you attempt to set the property to a culture that itself has a different Console Fallback UI Culture, then it will be assigned that final "leaf" culture.

Languages such as Arabic, Hebrew, Persian, Urdu and Syriac are based on bi-directional text. Windows applications, which employ a graphical user interface, support bi-directional languages. However, console applications, which employ the text user interface of the operating system console, do not provide bi-directional support. Consequently, if a console application is localized to Arabic or Hebrew, it displays unreadable text on the console screen.

The user interface culture specifies the resources that an application needs to support user input and output, and by default is the same as the operating system culture. For example, the CurrentUICulture property returns an Arabic culture for an Arabic operating system. The application should use the ConsoleFallbackUICulture property to retrieve a neutral culture suitable for a console application user interface.

Applies to