Files
Nate VanBuskirk 2ac49cb810 Created Solutions for:
Mobile
Mobile.Android
Web (MVC.NET)
Web.Tests
WinForms
2019-11-10 18:05:36 -06:00

23 lines
457 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace Winforms
{
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new Form1());
}
}
}