Hi forum,
Please help me solve the problem here. I need to parse a range of IP into a List of IPAddress for example the input was "192.168.1.1-192.168.1.10" and the expected result was:
["192.168.1.1",
"192.168.1.2",
"192.168.1.2",
.....
"192.168.1.10"]
I'm using external library in VB.Net script called "IPAddressRange" but it keep gives me an error.
I have tried adding reference ".dll" file of the external library, but still it didn't work. Please help me solve this issue or give any other alternative. Thanks