im a beginner

puff3d

New member
Joined
Mar 13, 2022
Messages
1
Programming Experience
Beginner
so ive very recently started coding with c#.. like literally last night. and i want to know how fast people usually catch on because its very frustrating and not making a lot of sense. any tips or encouragement is appreciated as well.
 
Your question is much like "how long is a piece of string". Different people will learn at different rates. Some people already think the right way to excel at programming and some people don't. How you're learning and where you're getting your information will make a difference too.

Programming is about using constructs that you are already familiar with in unfamiliar situations. There are fundamental building blocks, like branches and loops, that you must learn first, then you can combine them into new combinations to do new things.

Programming doesn't exist in a vacuum though. Some people abandon the logical principles that they've used their whole lives as though programming works differently. It doesn't. Code is just an implementation of logic. Work out the logic first. Work out the steps your code needs to perform and then, if necessary, write them down. As you write your code, continuously compare it to that algorithm to confirm that it is doing what it should, nothing it shouldn't and in the right order.
 
Is C# your first programming language, or do you already know how to program in another language? That tends to make a difference in the learning rate.

Also, how exactly are you trying to learn C#? A book? A tutorial? A boot camp? I hope not a YouTube video, or just randomly Googling stuff. Perhaps the teaching style does not match your learning style.
 
Back
Top Bottom