This is the first time I'm working with IPEndPoint, so pardon my lack of experience.
If I create an IPEndPoint like this:
IPEndPoint localEndPoint = new IPEndPoint(IPAddress.Parse("192.168.1.25"), 0);
Is it possible that port 0 will already be in-use such that this will produce an exception? Is there any type of convention here for which local port number to use? Should I just use a randomly generated number that's less than 65,536? Is there a best or safest approach to choosing a port and does it even matter?
The use case in this particular instance is just for me to learn more. I'm fiddling with sending UDP broadcast WOL packets at the moment, but later I expect to get into a bit more complicated code. I just want to make sure I understand best practice.
According to IANA
Also from the UdpClient(port) ctor MSDN documentation: