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