An open API service indexing awesome lists of open source software.

https://github.com/loosedwhale/getrandomipadress


https://github.com/loosedwhale/getrandomipadress

Last synced: about 2 months ago
JSON representation

Awesome Lists containing this project

README

        

# GetRandomIpAdress

``` cs
public static string GetRandomIpAddress()
{
var random = new Random();
return $"{random.Next(1, 255)}.{random.Next(0, 255)}.{random.Next(0, 255)}.{random.Next(0, 255)}";
}
```