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