Class1.cs
上传用户:lxycoco
上传日期:2022-07-21
资源大小:38457k
文件大小:1k
源码类别:

C#编程

开发平台:

Others

  1. using System;
  2. using System.Net;
  3. namespace Wrox.ProCSharp.AccessInternet.IPAddressExample
  4. {
  5. /// <summary>
  6. /// Summary description for Class1.
  7. /// </summary>
  8. class Class1
  9. {
  10. /// <summary>
  11. /// The main entry point for the application.
  12. /// </summary>
  13. [STAThread]
  14. static void Main(string[] args)
  15. {
  16. //
  17. // TODO: Add code to start application here
  18. //
  19. IPAddress ipAddress = IPAddress.Parse("234.56.78.9");
  20. long  address = ipAddress.Address;          // address will be assigned 37105130
  21. string ipString = ipAddress.ToString(); 
  22. Console.WriteLine(ipString);
  23. Console.WriteLine(address.ToString());
  24. //IPHostEntry HostEntry = new IPHostEntry();
  25. IPHostEntry wroxHost = Dns.Resolve("www.wrox.com");
  26. IPHostEntry wroxHostCopy = Dns.GetHostByAddress("204.148.170.161");
  27. Console.WriteLine(wroxHostCopy.HostName.ToString());
  28. Console.ReadLine();
  29. // ipString will be assigned
  30. // the text "234.45.54.2" 
  31. }
  32. }
  33. }