C, Source Code, UDP Communication
UDPListener: Receiving UDP messages in C#
This post is part of the UDPCommunication project.

The class in this post allows, in an easy and fast manner, to receive UDP messages. You don’t need to be a socket expert to use the class, cause you only need to write few rows of code to use it. Following, a little example showing how to use the class:
private void InitConnection()
{
m_udpListener = new UDPListener(m_port, new byte[4] { 0, 0, 0, 0 });
m_udpListener.MessageReceived += new UDPMessageReceivedDelegate(udpListener_MessageReceived);
}
11 Oct 2007 dzamir 0 comments
