Skip to content

Instantly share code, notes, and snippets.

@Hyo-Seong
Created January 25, 2022 12:24
Show Gist options
  • Save Hyo-Seong/6a6b5d3b01cfd3d64735bb850befe9ef to your computer and use it in GitHub Desktop.
Save Hyo-Seong/6a6b5d3b01cfd3d64735bb850befe9ef to your computer and use it in GitHub Desktop.
using System;
using System.Net;
public class Ipv4AddressGenerator
{
public static IPAddress Generate()
{
var data = new byte[4];
new Random().NextBytes(data);
IPAddress ip = new IPAddress(data);
return ip;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment