DNS Name Resolution
using System;
using System.Net; namespace DNSNameResolution { public class DNSNameResolution { [STAThread] static void Main(string[] args) { IPHostEntry MyHost = Dns.Resolve(args[0]); foreach (IPAddress MyIP in MyHost.AddressList) { Console.WriteLine(MyIP.Address); } } } } |
Bütün Zaman Ayarları WEZ +3.5 olarak düzenlenmiştir. şu Anki Saat: 08:39 PM . |