mirror of
git://git.acid.vegas/random.git
synced 2024-11-16 21:16:37 +00:00
20 lines
446 B
C#
20 lines
446 B
C#
|
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());
|
|||
|
}
|
|||
|
}
|
|||
|
}
|