123456789101112131415161718192021 |
- using System.Net;
- namespace WS
- {
- public static class NetworkHelper
- {
- public static IPEndPoint ToIPEndPoint(string host, int port)
- {
- return new IPEndPoint(IPAddress.Parse(host), port);
- }
- public static IPEndPoint ToIPEndPoint(string address)
- {
- int index = address.LastIndexOf(':');
- string host = address.Substring(0, index);
- string p = address.Substring(index + 1);
- int port = int.Parse(p);
- return ToIPEndPoint(host, port);
- }
- }
- }
|