Im currently working on a C# project that requires the use of proxies.
Does anyone know how to do this?Code:String WholeProxy = "127.0.0.1:80";
String Address = Here I need to split "WholeProxy" to get just the "127.0.0.1";
int Port = Here I need to split "WholeProxy" to get just the "80";
WebProxy WP = new WebProxy(Address,Port);
Thanks,
BuckleyInDaHouse.
