2024-11-23 21:37:12 -07:00

15 lines
319 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());
}
}