Esempio n. 1
0
File: Form1.cs Progetto: bushadam/QM
        public Form1() {
            InitializeComponent();
            this.Listener = new UDPListener(Notify);
            this.Listener.Begin("localhost", 6666);

            this.HideThis();
        }
Esempio n. 2
0
        public Form1()
        {
            InitializeComponent();
            this.Listener = new UDPListener(Notify);
            this.Listener.Begin("localhost", 6666);

            this.HideThis();
        }
Esempio n. 3
0
        static void Main(string[] args) {
            var lis = new UDPListener((s) => {
                Console.WriteLine(s);
            });
            lis.Begin("", 6666);

            Console.Read();
        }
Esempio n. 4
0
        static void Main(string[] args)
        {
            var lis = new UDPListener((s) => {
                Console.WriteLine(s);
            });

            lis.Begin("", 6666);

            Console.Read();
        }