00001 //----------------------------------------------------------------------------- 00002 // InfoTransmitter.cs 00003 // (A. Schiffler, 2009-2011) 00004 //----------------------------------------------------------------------------- 00005 00006 namespace InfoTransmitter 00007 { 00008 using System; 00009 using System.Collections.Generic; 00010 using System.Linq; 00011 using System.Windows.Forms; 00012 00013 static class InfoTransmitter 00014 { 00018 [STAThread] 00019 static void Main() 00020 { 00021 Application.EnableVisualStyles(); 00022 Application.SetCompatibleTextRenderingDefault(false); 00023 Application.Run(new TransmitterForm()); 00024 } 00025 } 00026 }
1.6.2