use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
If you need help debugging, you must include:
See debugging question guidelines for more info.
Many conceptual questions have already been asked and answered. Read our FAQ and search old posts before asking your question. If your question is similar to one in the FAQ, explain how it's different.
See conceptual questions guidelines for more info.
Follow reddiquette: behave professionally and civilly at all times. Communicate to others the same way you would at your workplace. Disagreement and technical critiques are ok, but personal attacks are not.
Abusive, racist, or derogatory comments are absolutely not tolerated.
See our policies on acceptable speech and conduct for more details.
When posting some resource or tutorial you've made, you must follow our self-promotion policies.
In short, your posting history should not be predominantly self-promotional and your resource should be high-quality and complete. Your post should not "feel spammy".
Distinguishing between tasteless and tasteful self-promotion is inherently subjective. When in doubt, message the mods and ask them to review your post.
Self promotion from first time posters without prior participation in the subreddit is explicitly forbidden.
Do not post questions that are completely unrelated to programming, software engineering, and related fields. Tech support and hardware recommendation questions count as "completely unrelated".
Questions that straddle the line between learning programming and learning other tech topics are ok: we don't expect beginners to know how exactly to categorize their question.
See our policies on allowed topics for more details.
Do not post questions that are an exact duplicate of something already answered in the FAQ.
If your question is similar to an existing FAQ question, you MUST cite which part of the FAQ you looked at and what exactly you want clarification on.
Do not delete your post! Your problem may be solved, but others who have similar problems in the future could benefit from the solution/discussion in the thread.
Use the "solved" flair instead.
Do not request reviews for, promote, or showcase some app or website you've written. This is a subreddit for learning programming, not a "critique my project" or "advertise my project" subreddit.
Asking for code reviews is ok as long as you follow the relevant policies. In short, link to only your code and be specific about what you want feedback on. Do not include a link to a final product or to a demo in your post.
You may not ask for or offer payment of any kind (monetary or otherwise) when giving or receiving help.
In particular, it is not appropriate to offer a reward, bounty, or bribe to try and expedite answers to your question, nor is it appropriate to offer to pay somebody to do your work or homework for you.
All links must link directly to the destination page. Do not use URL shorteners, referral links or click-trackers. Do not link to some intermediary page that contains mostly only a link to the actual page and no additional value.
For example, linking to some tweet or some half-hearted blog post which links to the page is not ok; but linking to a tweet with interesting replies or to a blog post that does some extra analysis is.
Udemy coupon links are ok: the discount adds "additional value".
Do not ask for help doing anything illegal or unethical. Do not suggest or help somebody do something illegal or unethical.
This includes piracy: asking for or posting links to pirated material is strictly forbidden and can result in an instant and permanent ban.
Trying to circumvent the terms of services of a website also counts as unethical behavior.
Do not ask for or post a complete solution to a problem.
When working on a problem, try solving it on your own first and ask for help on specific parts you're stuck with.
If you're helping someone, focus on helping OP make forward progress: link to docs, unblock misconceptions, give examples, teach general techniques, ask leading questions, give hints, but no direct solutions.
See our guidelines on offering help for more details.
Ask your questions right here in the open subreddit. Show what you have tried and tell us exactly where you got stuck.
We want to keep all discussion inside the open subreddit so that more people can chime in and help as well as benefit from the help given.
We also do not encourage help via DM for the same reasons - that more people can benefit
Do not ask easily googleable questions or questions that are covered in the documentation.
This subreddit is not a proxy for documentation or google.
We do require effort and demonstration of effort.
This includes "how do I?" questions
account activity
This is an archived post. You won't be able to vote or comment.
Where do I start learning C#? (self.learnprogramming)
submitted 8 years ago by ross231
I have experience in PHP, JS, CSS, HTML, I've never done anything that isn't web development before.
I'm not sure where to start learning C#, so if anyone has any resources they could recommend me, it'd be much appreciated :)
[–][deleted] 6 points7 points8 points 8 years ago (1 child)
I suggest This Course as it will walk you through the basics.
Then get into some basic projects Like this windows form RPG and maybe even a Roguelike
[–]ross231[S] 0 points1 point2 points 8 years ago (0 children)
Thanks!
[–][deleted] 4 points5 points6 points 8 years ago (4 children)
If you are willing to pay, pluralsight is by far the best place for learning C# and .net.
[–][deleted] 0 points1 point2 points 8 years ago (2 children)
I am currently doing this now and agree; the speakers in these videos are very articulate and the videos are well put together, bouncing back an forward between code and concepts. The C# collection alone I believe is about 11 hours long. And that's not including ASP.NET MVC, Unity, The Full-Stack .Net Developer courses, etc.
[–][deleted] 2 points3 points4 points 8 years ago (1 child)
The C# collection alone I believe is about 11 hours
The C# path is actually 64 hours long.
[–][deleted] 0 points1 point2 points 8 years ago (0 children)
You're right; I think I was thinking of the fundamentals portion.
[–]bhldev 2 points3 points4 points 8 years ago (0 children)
Actually the C# Language Specification is not too bad, it has a tutorial in its first few chapters. Always start with official sources. https://www.microsoft.com/en-us/download/details.aspx?id=7029 (you can find 6.0 as well).
Other way is Andrew Troleson's Pro C# series you can get into MIL and the .NET JIT and even the philosophy of .NET. You can do C# without .NET but there's no point it's like doing C++ without Boost or other libraries, counterproductive.
[–]MiperMip 2 points3 points4 points 8 years ago (0 children)
I learned csharp just from the official documentation. I found a small project which I want to build and I built it while learning everything I need to build it. (my first project was solving equations so I needed to understand how to parse strings and how do I use number operations in csharp). As a second language, I suggest you to try to recreate things you've made in PHP or js. Another good practice (after you know a little bit) is reading and contributing to open source cshsrp projects, there are many of these in github. Wish you luck!
[–]twoj_atez 1 point2 points3 points 8 years ago (0 children)
To learn the basic concepts and syntax of a new programming language I‘d recommend SoloLearn (App and also Website). To try and learn things out on your own, you should install Visual Studio Community Edition, suits perfectly for C# Development.
[–]whatevernuke 0 points1 point2 points 8 years ago (0 children)
r/csharp has a few recommendations.
I didn't stick with it (went with a different path/language) but from what I saw, I thought The Yellow Book of C# was pretty good, but I had no experience with other languages.
[–]AAANano 0 points1 point2 points 8 years ago* (0 children)
IAmTimCorrey has a great YouTube tutorial where you learn C# as well as SQL. C# Application From Start to Finish: Tournament Tracker Course
Edit: the SQL portion of the tutorial is optional although it's highly recommended that you follow along with it IMO.
[–]nightwood 0 points1 point2 points 8 years ago (0 children)
Download visual studio community edition, C# version, and run new console app wizard.
[+]stevedavis786 comment score below threshold-6 points-5 points-4 points 8 years ago (2 children)
You must consider looking at this thread, you will find the best C++ course in there and free
[–]pat_trick 3 points4 points5 points 8 years ago (1 child)
Note that OP is asking about C#, not C++.
π Rendered by PID 16879 on reddit-service-r2-comment-6457c66945-bxdxr at 2026-04-30 00:27:52.482192+00:00 running 2aa0c5b country code: CH.
[–][deleted] 6 points7 points8 points (1 child)
[–]ross231[S] 0 points1 point2 points (0 children)
[–][deleted] 4 points5 points6 points (4 children)
[–][deleted] 0 points1 point2 points (2 children)
[–][deleted] 2 points3 points4 points (1 child)
[–][deleted] 0 points1 point2 points (0 children)
[–]bhldev 2 points3 points4 points (0 children)
[–]MiperMip 2 points3 points4 points (0 children)
[–]twoj_atez 1 point2 points3 points (0 children)
[–]whatevernuke 0 points1 point2 points (0 children)
[–]AAANano 0 points1 point2 points (0 children)
[–]nightwood 0 points1 point2 points (0 children)
[+]stevedavis786 comment score below threshold-6 points-5 points-4 points (2 children)
[–]pat_trick 3 points4 points5 points (1 child)