1
0
mirror of synced 2025-02-17 11:18:33 +01:00
TaikoSoundEditor/Program.cs

30 lines
668 B
C#
Raw Normal View History

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