using System;
using System.Net;
public class Program
{
public static void Main()
IPEndPoint iep = new IPEndPoint(new IPAddress(new byte[] {180,97,33,107}), 0);
Console.WriteLine("iep = {0}", iep);
EndPoint ep = (EndPoint)iep;
Console.WriteLine("ep = {0}", ep);
}