mirror of
https://github.com/mRemoteNG/mRemoteNG.git
synced 2026-02-17 22:11:48 +08:00
18 lines
379 B
C#
18 lines
379 B
C#
using System;
|
|
using System.Windows.Forms;
|
|
using mRemoteNG.UI.Forms;
|
|
|
|
namespace mRemoteNG.App
|
|
{
|
|
public static class ProgramRoot
|
|
{
|
|
/// <summary>
|
|
/// The main entry point for the application.
|
|
/// </summary>
|
|
[STAThread]
|
|
public static void Main(string[] args)
|
|
{
|
|
Application.Run(frmMain.Default);
|
|
}
|
|
}
|
|
} |