C# C# tutorial for beginning programmer

AI Thread Summary
The discussion centers around finding suitable C# tutorials for someone with a basic understanding of HTML and CSS. It emphasizes that transitioning directly to object-oriented C# may be challenging without foundational programming knowledge. Participants suggest starting with simpler programming concepts before diving into C#. Recommended resources include tutorials from MSDN, C# information sites, and video courses from Microsoft. The conversation also touches on the similarities between C# and Java, noting that C# has evolved to include functional programming capabilities and has a strong integrated development environment (IDE) in Visual Studio. Comparisons highlight that C# is increasingly viewed as more open-source and cross-platform compared to Java, making it a viable choice for beginners. Overall, learning either language is seen as beneficial, with C# being praised for its user-friendly nature and robust features.
Evenus1
Messages
29
Reaction score
2
does anyone know a good c# tutorial for some one with only knowledge in css and html
 
Technology news on Phys.org
thank you
but c# is object orientated and your first link is not about that
 
Evenus1 said:
thank you
but c# is object orientated and your first link is not about that
First thing first. You're not going to dive head first into OO C# if all you know is HTML. Which isn't even a programming language, it's markup.
 
i know a bit of javascript but have had multiple discussions with my it teacher and he says c# is ok to go straight into
 
  • Like
Likes Greg Bernhardt
C# today is famous, but i were you I would choose other languages (PHP, Java, C). believe me C# is the language that will make you believe "oh it just works, no matter what" is correct.
 
what do you mean
 
Evenus1 said:
does anyone know a good c# tutorial for some one with only knowledge in css and html

Try these tutorials...

For C# http://csharp.net-informations.com

For CSS http://www.corelangs.com

Watson
 
Evenus1 said:
what do you mean
a programmer needs to learn the basics, assembly seems too low (it'll be too complex to deal with advanced topics like threading and event driven stuff), GUI languages are too highly abstract (the programmer will become stupid to really understand what stays behind the scene), so C or the likes is the middle thing to learn and start from, i see why most schools in the world use c as their primary lang of choice in software engineering classes.
Behind php, it's C
Behind C#, it's C
Behind Java, it's C
Behind nodejs, it's C
Behind All Windows DLLs :D it 's C
...
:D
 
  • #10
i meant this bit "believe me C# is the language that will make you believe "oh it just works, no matter what" is correct."
 
  • #11
  • #12
I have used both Java and C# extensively over the past 15 years, and to me, C# is a cut above Java at this point. C# and Java are very similar, but their is a culture war where people seldom seem to learn both. The virtual machines supporting C# are now faster, and C# has more of an open source credential, than Java. This has reversed from a few years ago,when Java was considered the "open" language. Microsoft also provides a free version of its world-class integrated development environment (Visual Studio Express), and IMO it's a wonderful IDE and probably easier to get around in than the two I've used for Java (Eclipse and Netbeans). So I see no reason for you not to learn C# if that interests you. .NET is pretty cool these days. And if you learn either one, learning the other wouldn't be that difficult.
 
  • Like
Likes Mark44
  • #13
Silicon Waffle said:
C# today is famous, but i were you I would choose other languages (PHP, Java, C). believe me C# is the language that will make you believe "oh it just works, no matter what" is correct.

How does java differ from c# in any way? They are almost identical, even their api is very similar.
 
  • #14
C# is indeed very like Java. Microsoft modeled it after Java, and in fact, since it was created after Java, it improved upon Java in a few ways. Ironically, C# (and the other languages which run on .NET) are nowadays closer to being "open source" and perhaps even cross-platform than Java itself. Java was designed to run on various operation systems, insulated from the OS by its virtual machine. C#.NET also runs on a virtual machine (whose spec is open and standardized, and which is now also available for Linux), but its VM's original design goals were: 1) to support multiple languages (unlike the Java VM which was specifically for Java, at least originally), and 2) to unify all the dozens of versions of Windows so that Windows developers could write programs once which ran on all the various versions of Windows.

As for as the programmer experience, the main difference is the integrated development environment that you choose. Microsoft's IDE (Visual Studio) is world-class; even the free "express" version is quite good. Likewise, there are some very good IDE's for Java; I've used Eclipse and Netbeans, both of which have great features. But Visual Studio is more well-rounded than either of those. (Sorry, I just realized I've repeated here what I said already above).

The programming concepts, libraries and syntax of C# and Java are quite similar. However, nowadays, the latest C# version has been extended to provide functional programming capabilities as well as procedural, so it's a bigger and more complex language, now, even than Java. OTOH, there are extensions that ride on top of Java which also make it very exciting.

Both languages are also very good at multi-threading, which is important in certain applications such as networking or user interfaces.

Learn either one and you won't hurt yourself at all. I'm a bit of a rare bird in that I've used both platforms a fair amount. Like them both!
 
  • Like
Likes Silicon Waffle

Similar threads

Replies
4
Views
1K
Replies
7
Views
2K
Replies
9
Views
3K
Replies
6
Views
3K
Replies
10
Views
2K
Replies
11
Views
2K
Back
Top