コード例 #1
0
ファイル: Program.cs プロジェクト: strider-/SABnzbd-LCD
        static void Main(string[] args)
        {
            slcd = new SABnzbdLCD("COM3", 500);
            slcd.Start();

            while(Console.ReadKey(true).Key != ConsoleKey.Escape)
                ;

            slcd.Stop();
        }
コード例 #2
0
ファイル: Service1.cs プロジェクト: strider-/SABnzbd-LCD
 public Service1()
 {
     InitializeComponent();
     slcd = new SABnzbdLCD("COM3", 500);
 }