I am new to C # programming

How can I start with c #

+4
source share
8 answers

First, get a copy of Visual C # Express , for free.

Then you can follow the online tutorial (use google), it can, for example, be found here . I would also recommend you get a good book.

If you are new to programming, I would go for a book that teaches programming, not C #. Many C # books suggest that you have at least some programming experience.

+7
source

Microsoft has an excellent guide to getting started with C # on its website. Download Visual C # 2008 Express and follow their instructions to create your first application.

If you are already used to another object-oriented programming language, you may prefer to buy a decent book that will guide you through the language from the point of view of an experienced programmer.

+5
source

Borland (probably the best-known developers for Delphi) has a free IDE to start developing your C # applications. To learn more about C # builder, visit http://www.borland.com/csharpbuilder/

SharpDevelop has a very intriguing view of Visual Studio, developed in C # and offering it a source for review and modification. Released under the GPL is no doubt a powerful C # IDE. To learn more about this IDE, go to http://sharpdevelop.com/OpenSource/SD/Default.aspx

If you need a good book, I would recommend Visual C # .NET 2003 at 24 hours Sams Publishing. I personally do not know the author, but he is very useful, and his book is very insightful and aimed at those who have never programmed before.

Sitepoint.com also has a good set of articles and a book about using C # .NET and ASP to create a website. This will be an interesting way to get started.

0
source

Start by downloading the IDE for C # ... Visual Studio Express Edition . Free and unlimited.

You can also find training resources on this page. MSDN Express provides a good link.

0
source

I recommend a copy of Juval Lowy Programming.NET Programming Components. I am still collecting things from this.

0
source

Sometimes it seems to me that I was new. There is always something to learn and learn.

Get the book, read the first 2-3 chapters, then start reading the code in parallel with the rest of the book. Think of a small project or programming toy - and go for it!

0
source

Here you have an explanation.

http://norvig.com/21-days.html

As with any other programming language, it’s not about how to start coding, about what to encode, how to learn and encode it! Participation in the OS project always helps, so you can learn about successes or mistakes made by other developers.

Hope it serves, Happy Coding!

0
source

Simple: don't start c # programming. Try a real language like Java, C ++ or Lisp.

Java is the classic beginner language. And if you already know this, you won’t be asking questions with a single layer in stackoverflow.

0
source

All Articles