1
0
mirror of https://github.com/SirusDoma/VoxCharger.git synced 2024-12-18 02:15:55 +01:00
VoxCharger/Program.cs

27 lines
748 B
C#
Raw Normal View History

2020-04-18 22:24:48 +02:00
using System;
using System.Collections.Generic;
using System.Globalization;
2020-04-18 22:24:48 +02:00
using System.Linq;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace VoxCharger
{
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
// Fix numeric float / double / decimal separator from comma to dots for certain System Locales.
CultureInfo.DefaultThreadCurrentCulture = CultureInfo.InvariantCulture;
2020-04-18 22:24:48 +02:00
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new MainForm());
}
}
}