help please learn C# #172952
-
Select Topic AreaQuestion BodyHi i'm studying to be a software engineer and want to learn C# can you please give me some advice, that might be useful. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
|
Hi! @BEARZER Here are a few tips that might help you as you get started: 1. Start with the basics and focus on understanding how things work 2. Use Visual Studio as your IDE 3. Build small projects 4. Understand the .NET ecosystem 5. Practice coding problems regularly 6. Use official docs and good books If you want something more in-depth, “C# in Depth” by Jon Skeet is a classic and very well-written. 7. Get involved in the community 8. Be patient and stay consistent Keep at it, and in a few months, you’ll be amazed by how much you know. Good luck! |
Beta Was this translation helpful? Give feedback.
Hi! @BEARZER
It’s awesome that you’re learning C#—it’s a really powerful language that’s widely used in everything from web development to game development (especially with Unity) and even large business applications.
Here are a few tips that might help you as you get started:
1. Start with the basics and focus on understanding how things work
Learn about variables, data types, loops, methods, and especially object-oriented programming (OOP). Since C# is strongly OOP-based, really getting concepts like classes, inheritance, and encapsulation will pay off big time later.
2. Use Visual Studio as your IDE
Visual Studio makes coding in C# much easier, especially with features like auto-comple…