コード例 #1
0
        public static void __Main(string[] args)
        {
            GUI_notification_client client;

            if (args.Length == 1)
                client = new GUI_notification_client("client.ini", int.Parse(args[0]));
            else
                client = new GUI_notification_client("client.ini");

            client.StartListener ();
        }
コード例 #2
0
ファイル: SysTrayApp.cs プロジェクト: tomer/monotifications
 private void start_notification_client()
 {
     client = new GUI_notification_client("client.ini");
     client.StartListener();
 }