일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- chashtag
- Github
- IValueConverter
- tls
- WPF
- git
- commit
- 코딩테스트
- .net
- Microsoft
- Coding
- algorithm
- C#
- string
- convert
- coding-test
- log
- windows
- windows10
- programmers
- Visual Studio
- Process
- Binding
- mysql
- nullable
- dotNET
- File
- csharp
- ListView
- logging
Archives
- Today
- Total
목록IPv4 (1)
CHashtag
[C#] 랜덤한 ip 생성하기 (ipv4)
안녕하세요. using System; using System.Net; public class Ipv4AddressGenerater { public static IPAddress Generate() { var data = new byte[4]; new Random().NextBytes(data); IPAddress ip = new IPAddress(data); return ip; } } 오늘은 랜덤한 IP주소를 생성해야할 때 생성하는 방법에 대해 알려드리고자 합니다. 내용이 간단하니 바로 코드로 보시죠. 다만, IP를 생성한다고 실제 사용가능한 IP가 생성되는 것이 아닌 IPV4형식의 0.0.0.0~255.255.255.255 사이의 값이 무작위로 생성되는 것이므로 사용에 유의하시기 바랍니다. https:..
C#
2022. 1. 25. 21:24