1
mirror of git://git.acid.vegas/random.git synced 2024-09-28 13:20:30 +00:00
random/c#/Skype Quote Generator/Source/SkypeQuote/Program.cs

20 lines
446 B
C#
Raw Normal View History

2023-05-05 22:28:45 +00:00
using System;
using System.Windows.Forms;
namespace SkypeQuote
{
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new Main());
}
}
}