I come from VB6 and finally decided to take a serious look at C#, but
the type casting really pisses me off. Why on earth would I want to
write syntax like this:
HttpWebRequest request =
(HttpWebRequest )WebRequest.Cre ate("http://www.SomeDomain. com/");
I can live with the curly brackets and the semicolons, but I'm not sure
I can live with this. Help ;-p
terje
the type casting really pisses me off. Why on earth would I want to
write syntax like this:
HttpWebRequest request =
(HttpWebRequest )WebRequest.Cre ate("http://www.SomeDomain. com/");
I can live with the curly brackets and the semicolons, but I'm not sure
I can live with this. Help ;-p
terje
Comment