DNS Name Resolution

Konu sahibi son olarak 4808 gün önce görüldü
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);}}}}
 
Geri