why C# and asp.net
solarsystem
Member Posts: 4 ■□□□□□□□□□
hai
i was surfing the jobs websites based on the dotnet .i am able to see only C#and asp.net now i am confused wether i have to learn ab.net or c#.net or asp.net i am just a beginner
sohelp to by suggesting which language should i start
thank you
regards
i was surfing the jobs websites based on the dotnet .i am able to see only C#and asp.net now i am confused wether i have to learn ab.net or c#.net or asp.net i am just a beginner
sohelp to by suggesting which language should i start
thank you
regards
Comments
-
elover_jm Member Posts: 349hi, These are updates to C, C++ and MS ASP.
SO to your question, Yes i think you should start with ASP.NET (Web Development Language) as it provides a more flexible and Advance feature environment than it's predecessor ASP.
As for C# an object oriented language Linked to the .Net platform successor to C and C++ (More for building desktop applications). -
elover_jm Member Posts: 349There's C#.NET,C++.NET, VB.NET and ASP.NET all are MS latest release on the ".Net Framework".
here a link for more info.....
http://www.microsoft.com/presspass/press/2000/Jun00/CSharpPR.mspx
http://www.microsoft.com/learning/training/roadmap/languages.mspx -
JDMurray Admin Posts: 13,090 Adminsolarsystem wrote:than what happens to visual basic it doesn't have any future
-
rockrichard Member Posts: 5 ■□□□□□□□□□the syntax of vb is more relaxed, maybe too relaxed. for a small project it's probably ok.
but for a larger project, even by reading the code is painful, not to mention maintaining it.
C# uses most of the code conventions. If you are a beginner, i guess c# is worth investing time & efforts.
Cheers,
Richard -
bcairns Member Posts: 280solarsystem wrote:hai
i was surfing the jobs websites based on the dotnet .i am able to see only C# and asp.net now i am confused wether i have to learn ab.net or c#.net or asp.net i am just a beginner
sohelp to by suggesting which language should i start
thank you
regards
C# and VB.Net (and C++ CLI and J#) are just thin layers over the .net framework. Which language you use is actually pretty irrelivant for most of the day-to-day programming you will do. C# has a bigger following because the syntax is almost identical to Java - which has a HUGE following.
My two cents worth:
Learn using VB.net because it will be easer for you to understand code like this:
If car.running= true then
'Do something
end if
And once you get familiar with the .net framework and general programming concepts learn C# so you will understand code like this"
if(obj.prop == true)
{
//Do something
}
Also knowing both languages will open more doors for youMy youTube Channel: http://www.youtube.com/user/voidrealms -
nickmak86 Member Posts: 28 ■□□□□□□□□□Actually I started reading both on VB and C#... I kinda like VB better because I feel its more 'English-like'... But C# seems like it is the way to go...