Projekt

Obecné

Profil

Stáhnout (602 Bajtů) Statistiky
| Větev: | Tag: | Revize:
1
using System.Globalization;
2
using System.Threading;
3
using System.Windows.Forms;
4

    
5
namespace DeltaRobotVr.Launcher
6
{
7
    internal class Program
8
    {
9
        public static void Main()
10
        {
11
            CultureInfo cultureInfo = new CultureInfo("en-US");
12
            Thread.CurrentThread.CurrentCulture = cultureInfo;
13
            Thread.CurrentThread.CurrentUICulture = cultureInfo;
14
            CultureInfo.DefaultThreadCurrentCulture = cultureInfo;
15
            CultureInfo.DefaultThreadCurrentUICulture = cultureInfo;
16
            
17
            Application.Run(new LauncherForm());
18
        }
19
    }
20
}
(5-5/5)