2024-08-31 08:01:45 -07:00

15 lines
316 B
C#

namespace View_by_Distance.Drag_Drop_Explorer;
public class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
private static void Main()
{
ApplicationConfiguration.Initialize();
Application.Run(new DragDropExplorer());
}
}