public void send(string str) { if (udp != null) { //udp.SendData(str); udp.SendData(str, ip, sendPort); } }
public void SendUDPData(Packet _packet) { _packet.WriteLength(); udp.SendData(_packet); }