2

First I want to say that I read: UdpClient, Receive() right after Send() does not work?

My question is: is this the normal standard way to handle UDP communications. Set up one UdpClient for send and another for receive?

Community
  • 1
  • 1
LunchMarble
  • 5,079
  • 9
  • 64
  • 94

2 Answers2

3

Yes.

This is the standard way to do UDP sockets in .NET

Community
  • 1
  • 1
1

you can actually do this on a Server using Sockets as well checkout this link to see if this will help you in anyway.how to configure the server socket

MethodMan
  • 18,625
  • 6
  • 34
  • 52