在c#中查找CurrentCulture的流向

时间:2011-01-25 08:41:48

标签: c# localization

HI 有没有办法让FlowDirection成为当前的文化。

我设置了像

这样的属性
public string FlowDirection
{
get {
return // should return the flow direction using Thread.CurrentThread.CurrentUICulture.
}
}

我不想硬编码像

这样的东西
if (currentLanguage.ToLower().StartsWith("ar"))
{
     return FlowDirection.RightToLeft;
}
else
{
    return FlowDirection.LeftToRight;
}

1 个答案:

答案 0 :(得分:10)

使用此:CultureInfo.TextInfo.IsRightToLeft

取自related question