Guest ardmore Posted June 20, 2023 Posted June 20, 2023 I want to generate random 10 ip addresses, how? Example: 100@10.10.10.10; 200@10.150.180.10; 450@170.10.10.150 // the code I got var random = new Random(); var chars = "0123456789"; var ips = Enumerable.Repeat(chars,10).Select(s=>s[random.Next(s.Length)]).ToArray(); Continue reading... Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.