Any IPAddress

image_pdfimage_print
   
  
using System;
using System.Net;
class AddressSample {
    public static void Main() {
        IPAddress test4 = IPAddress.Any;
        Console.WriteLine("The ANY address is: {0}",test4.ToString());
    }
}

   
     


This entry was posted in C# Network. Bookmark the permalink.