1
0
mirror of synced 2024-11-24 04:20:10 +01:00
TaikoSoundEditor/Program.cs
2023-07-19 08:10:25 +03:00

30 lines
668 B
C#

using System.Diagnostics;
using System.Globalization;
namespace TaikoSoundEditor
{
internal static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
try
{
int x = 0;
int y = 2 / x;
}
catch(Exception e)
{
Debug.WriteLine(e);
}
CultureInfo.CurrentCulture = CultureInfo.InvariantCulture;
ApplicationConfiguration.Initialize();
Application.Run(new MainForm());
}
}
}