string ip;
int port;
here is my code that reads into the text file IEnumerable<String> lines = File.ReadLines("proxies.txt");
I want to sort IP and PORT in the code(above) by reading them from the text file as IP:PORT and use them for my string/int. I want to access them instantaneously.
Only one IP:PORT can be used at one time.(I guess they can be some of of an array as [0] and adds 1 for each line each time its cycled) The list file is very simple heres a visual
ip1:port1
ip2:port2
ip3:port3
ip4:port4