None IPAddress

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

   
     


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