Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

C# Learning for a Beginner : To do a project without having read big concepts [closed]

Tags:

c#

After 3 years working as an IT Support Technician, I decided to change of field and get to Programming.

I am learning C# through the Wrox Beginning Visual C# 2008 book, that I use as guideline.

I have read the whole POO part (inheritance, Polymorphism,....delegates,...). I have started the second part which is Windows Programming (Winforms)

I know that lots of you recommend to do some working applications in order to practice, but how can I do some personnal projects if I haven't even started concepts like SQL Server, LINQ or Network Programming, WPF, WCF.... Those topics are enumarated at the end of the book.

I am just trying to find the best method : Should I first finish this book and then start to code, or should I just do a project without having read the hot topics or jump straight forward to those topics.

I dont know if you see what I mean as english isn't my first language. But if you don't I can improve my explanation.

like image 857
Bon_chan Avatar asked Jul 09 '10 11:07

Bon_chan


People also ask

What C is used for?

C programming language is a machine-independent programming language that is mainly used to create many types of applications and operating systems such as Windows, and other complicated programs such as the Oracle database, Git, Python interpreter, and games and is considered a programming foundation in the process of ...

What is C in C language?

What is C? C is a general-purpose programming language created by Dennis Ritchie at the Bell Laboratories in 1972. It is a very popular language, despite being old. C is strongly associated with UNIX, as it was developed to write the UNIX operating system.

Is C language easy?

Compared to other languages—like Java, PHP, or C#—C is a relatively simple language to learn for anyone just starting to learn computer programming because of its limited number of keywords.

What is the full name of C?

In the real sense it has no meaning or full form. It was developed by Dennis Ritchie and Ken Thompson at AT&T bell Lab. First, they used to call it as B language then later they made some improvement into it and renamed it as C and its superscript as C++ which was invented by Dr.


1 Answers

You should code as much as possible. If you have no programming background or experience I suggest starting with a few small projects:

  • A calculator: start with the four basic operations and when everything is working add a few more functions and graphing.

When you learn a little about databases:

  • A blog engine: from the database generate a HTML file. Create interfaces to add a new post to a database. This doesn't need to be a web application: you can make an WinForms app that will generate a set of HTML files.

When you learn a little about networking:

  • An IRC client. The protocol is simple to be implemented and can be fun to write your own client.

And, after that, start your own little personal side projects. It should help you to learn better.

like image 96
Vitor Py Avatar answered Oct 14 '22 18:10

Vitor Py