1
0
mirror of synced 2024-11-27 21:10:48 +01:00
TaikoSoundEditor/Program.cs

30 lines
668 B
C#
Raw Normal View History

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