buxtonicer1
Programmer
Is there a way to convert a java class to c# .
I'm thinking some application, website or tool to help.
Anyone here done it ?
I'm thinking some application, website or tool to help.
Anyone here done it ?
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
using System.Net;
using System.IO;
HttpWebRequest wbrqLogin;
HttpWebResponse wbrsLogin;
String strTemp;
StreamReader srLogin;
wbrqLogin = WebRequest.Create("[URL unfurl="true"]http://www.tek-tips.com");[/URL]
wbrqLogin.Method = "GET";
wbrsLogin = wbrqLogin.GetResponse();
srLogin = new StreamReader(wbrsLogin.GetResponseStream());
strTemp = srLogin.ReadToEnd.Trim;
srLogin.Close();
this.textBox1.Text = strTemp;