Advertisement
Nikolay_Kashev

CultureInfo

Mar 25th, 2024 (edited)
698
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.30 KB | Software | 0 0
  1.     public void SetUp()
  2.     {
  3.         if (CultureInfo.CurrentCulture.Name == "bg-BG")
  4.         {
  5.             CultureInfo.CurrentCulture = CultureInfo.GetCultureInfo("bg-BG");
  6.         }
  7.         else
  8.         {
  9.             CultureInfo.CurrentCulture = CultureInfo.GetCultureInfo("en-US");
  10.         }
  11.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement