13 lines
226 B
C#
13 lines
226 B
C#
using System;
|
|
using System.Net;
|
|
|
|
namespace Test
|
|
{
|
|
internal class Program
|
|
{
|
|
static void Main(string[] args)
|
|
{
|
|
Console.WriteLine(Dns.GetHostAddresses("mootfrost.ru")[0]);
|
|
}
|
|
}
|
|
}
|