Question Where to start practicing?

mythbro

New member
Joined
Feb 17, 2024
Messages
1
Programming Experience
Beginner
Learning to program in C#, not really knowing where to start and practice first. Is there certain steps like syntax first etc etc. Ty you much.
 
I'd suggest that you just start with a basic tutorial and then you'll probably have a better idea of where to go yourself. There's a link to a popular tutorial in my signature below but it's not the only one around.
 
In my experience, as well as the common advice from others in the old defunct Dream.In.Code forum, the best practice happens when you tackle a project that interests you. Sometimes the project is interesting because it is useful (eg. I need a pretty printer for my code because my CS teacher was very strict about formatting). Sometimes, the project is interesting because it's a game or hobby that I like (eg. I wanted to be able to practice playing an obscure card game only common in my local region/country). Other times, the project is interesting because it's something that I wanted to learn more about (eg. I wanted to learn more about Vigenere ciphers). The key thing is that it should hold you interest to that point that you wouldn't mind creating a second, third, or even tenth iteration of implementing it again as you learn more about how to better organize code and data structures, or you learn new techniques and algorithms.

As for starting out, often finding a good book and/or tutorial is the best approach in my opinion. I don't learn well from videos and just watching other people do things. I'd rather get my hands dirty and try thing out myself. The videos maybe encouraging in terms of being able to get an overview and the confidence to have seen someone else do something, but a written book or tutorial is much easier to review and re-read in detail -- specially if there is code involved -- as compared to trying to keep rewinding and pausing a video.
 
If "practical" applications interest you, some challenge site like CodeWars.

You can ask ChatGPT to translate from code you know in another language, and you can ask it why code doesn't work etc. it's actually quite a patient teacher if you ask the right questions and doesn't often get basic stuff wrong
 
Back
Top Bottom