Is there any way to determine text direction from CultureInfo in asp.net?
Solution 1:
System.Globalization.CultureInfo.CurrentCulture.TextInfo.IsRightToLeft
This will return true if the current culture is read from right to left.
System.Globalization.CultureInfo.CurrentCulture.TextInfo.IsRightToLeft
This will return true if the current culture is read from right to left.