Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Advice for a Beginner

Status
Not open for further replies.

123ASP

MIS
Nov 2, 2002
239
US
hi, I would like to learn .Net thing, Anyadivce what route to take VB.net or C#.net.
Thanks for your input
Al
 
You can learn either vb.net or C# -- it doesn't matter. Pick whichever one seems more natural to you. Both of them compile to the same MSIL (Microsoft Intermediate Language).

My personal bias is towards C#, as it tends to enforce better programming habits.

Chip H.
 
Thanks for your response.
I heared that C# is more complicated than vb.net. If I have a vb 6.0 background, doest that help me learn vb.net?
Thanks again
Al
 
Both languages are actually very similar. The differences arise in the details (curly braces in C#, begin..end statements in VB; C# has the trinary operator ?:, VB has the IIF function; and so forth).

If you've ever used a language other than VB, you'll pick up C# very quickly, as the programming structure is the same amongst all major languages (for..next loops, while..wend, if..then..else, functions, exception handling, etc.)

Chip H.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top