/************************************************* * ThinkJot V2 * Author: Jeswin P. (jeswin@process64.com) * * This code is distributed under the terms of the * Apache License, Version 2.0. * **********************************************/ using System; using System.Collections.Generic; using System.Windows.Forms; namespace Moksha { static class Program { /// /// The main entry point for the application. /// [STAThread] static void Main() { Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); Application.Run(new MainForm()); } } }