Skip to content

Latest commit

 

History

History
23 lines (22 loc) · 521 Bytes

README.md

File metadata and controls

23 lines (22 loc) · 521 Bytes

Fits-expeiment

using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using System.Windows.Forms;

namespace Button { static class Program { ///

/// The main entry point for the application. /// [STAThread] static void Main() { Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); Application.Run(new Form1()); } } }