My doubt here it goes ---->
IN console app's
system.console.write ---> namespace.class.method -- > its well & fine
BUT
System.windows.forms --
system - namespace
windows - ??? ???
Form - class right
TY & possible redirect me to any links where i can find more syntax stuff like this :)

VulpesPosted Mar 11, 2013, 7:27 PM
Check this link for more detail on namespaces:
http://www.csharp-station.com/tutorials/lesson06.aspx
SUNIL GUTTAPosted Mar 12, 2013, 6:51 AM
Vidya Vrat AgarwalPosted Mar 12, 2013, 1:20 AM
Entire System.Windows.Forms is namespace.
Look a the sample code from designer below. TextBox is in Turquoise color below, means it is a class in the given namespace.
this.textBox1 = new System.Windows.Forms.TextBox();
Hope this helps.