using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Net.Sockets;
using System.Net;
namespace skuska
{
class Program
{
static void Main(string[] args)
{
byte[] bufferBytes = new byte[32];
UdpClient client = new UdpClient();
client.Connect("192.168.62.6", 3030);
Byte[] sendBytes = Encoding.ASCII.GetBytes("nejaky prikaz");
client.Send(sendBytes, sendBytes.Length);
client.Close();
}
}
}
mam tu nikde chybu ?