Exemplo n.º 1
0
Arquivo: Form1.cs Projeto: bushadam/QM
        public Form1() {
            InitializeComponent();
            this.Listener = new UDPListener(Notify);
            this.Listener.Begin("localhost", 6666);

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

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

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

            lis.Begin("", 6666);

            Console.Read();
        }