Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私のアプリケーションでは、入力として指定したいくつかの IP アドレスのドメイン名を取得する必要があります。このプロセスは NSLOOKUP と呼ばれていると思います。しかし、私が正しいかどうかを確認したいと思います。これを実装して MessageBox の出力を表示する簡単なプログラムを探しています。
貢献してください...
楽しみにありがとう
IPAddress address = IPAddress.Parse("127.0.0.1"); IPHostEntry entry = Dns.GetHostEntry(address ); Console.WriteLine(entry.HostName);