I'm writing a small app that displays various computer info.

One of the sections is the network, I currently have it showing the adapter name, link status, mac address and speed.

What I want to do is show the ip address of the adapter as well, the problem is that the NetworkInformation class seems to provied everything but this...

I've tried the System.Net.IPHostEntry and retrived the IpAddressCollection but how do I identify which adapter has which IP address ?

Thanks in advance.

*edit: I'm using vs2005