Loopback IPAddress
using System;
using System.Net;
class AddressSample {
public static void Main() {
IPAddress test2 = IPAddress.Loopback;
Console.WriteLine("Broadcast address: {0}",test2.ToString());
}
}
|
HTML code for linking to this page:
Related in same category :
-
-
-
-
-
-
-
-
|