Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
C# でクライアント サーバーの UDP ソケットを作成したいと考えています。単一のリクエスト応答で送受信に成功します。
しかし、私には問題があります。たとえば、5つのリクエストを同時に送信すると。各リクエストの応答時間は異なります。
各応答がどの要求に対するものかを理解するにはどうすればよいですか?
var _connection = new UdpClient( port-to-listen-at ); IPEndPoint sender = new IPEndPoint(IPAddress.Any, 0); byte[] data = _connection.Receive(ref sender);
Receive() が「送信者」を返す場合、送信者情報が含まれます