Advertisement
Guest User

Untitled

a guest
Nov 26th, 2014
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1.  
  2. using System;
  3. using System.Windows.Forms;
  4.  
  5. namespace WindowsFormsApplication1
  6. {
  7. internal static class Program
  8. {
  9. [STAThread]
  10. private static void Main()
  11. {
  12. Application.EnableVisualStyles();
  13. Application.SetCompatibleTextRenderingDefault(false);
  14. Application.Run((Form) new Form1());
  15. }
  16. }
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement