show/hide this revision's text 4 formatting
// IPv4
int intAddress = BitConverter.ToInt32(System.Net.IPAddress.Parse(
                                      address).GetAddressBytes()BitConverter.ToInt32(IPAddress.Parse(address).GetAddressBytes(), 0);
// IPv4

string ipAddress = new System.Net.IPAddress(BitConverter.GetBytes(
                                            intAddress)).ToString()IPAddress(BitConverter.GetBytes(intAddress)).ToString();

EDIT: As noted in other answers, when running this snippet on a little endian machine, it'll give out the bytes in the reverse order as defined by the standard. However, the question asks for a mapping between an integer and an IP address, not converting to the standard integer format. To do so, you have to consider the endian-ness of the machine you're running on.

show/hide this revision's text 3 added 376 characters in body
int intAddress = BitConverter.ToInt32(System.Net.IPAddress.Parse(
                                      address).GetAddressBytes(), 0); // IPv4

string ipAddress = new System.Net.IPAddress(BitConverter.GetBytes(
                                            intAddress)).ToString();

EDIT: As noted in other answers, when running this snippet on a little endian machine, it'll give out the bytes in the reverse order as defined by the standard. However, the question asks for a mapping between an integer and an IP address, not converting to the standard integer format. To do so, you have to consider the endian-ness of the machine you're running on.

show/hide this revision's text 2 added 84 characters in body
int intAddress = BitConverter.ToInt32(System.Net.IPAddress.Parse(address).GetAddressBytes()BitConverter.ToInt32(System.Net.IPAddress.Parse(
                                      address).GetAddressBytes(), 0); // IPv4

string ipAddress = new System.Net.IPAddress(BitConverter.GetBytes(intAddress)).ToString()System.Net.IPAddress(BitConverter.GetBytes(
                                            intAddress)).ToString();
show/hide this revision's text 1