ドメイン名を指定してIPアドレスを取得するにはどうすればよいですか?例えば: www.test.com
www.test.com
Dns.GetHostAddresses
GetHostAddresses メソッドを使用できます。
var address = Dns.GetHostAddresses("www.test.com")[0];