BuckleyInDaHouse
April 8th, 2008, 09:20 PM
Im currently working on a C# project that requires the use of proxies.
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);
Does anyone know how to do this?
Thanks,
BuckleyInDaHouse.
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);
Does anyone know how to do this?
Thanks,
BuckleyInDaHouse.