Perhaps you should take a look at Dns.GetHostByAddress(), it takes a string (ip address) as a parameter and returns a IPHostEntry, from which you can get the host at the HostName property:
string host = Dns.GetHostByAddress("192.168.0.15").HostName;
P.S. I didn't test this, just browsed the documentation ;)
|