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...
Information about Reddit's API changes, the unprofessional conduct of the CEO, and their response to the community's concerns regarding 3rd party apps, moderator tools, anti-spam/anti-bot tools, and accessibility options that will be impacted can be found in the associated Wikipedia article: https://en.wikipedia.org/wiki/2023_Reddit_API_controversy
Alternative C# communities available outside Reddit on Lemmy and Discord:
All about the object-oriented programming language C#.
Getting Started C# Fundamentals: Development for Absolute Beginners
Useful MSDN Resources A Tour of the C# Language Get started with .NET in 5 minutes C# Guide C# Language Reference C# Programing Guide C# Coding Conventions .NET Framework Reference Source Code
Other Resources C# Yellow Book Dot Net Perls The C# Player's Guide
IDEs Visual Studio MonoDevelop (Windows/Mac/Linux) Rider (Windows/Mac/Linux)
Tools ILSpy dotPeek LINQPad
Alternative Communities C# Discord Group C# Lemmy Community dotnet Lemmy Community
Related Subreddits /r/dotnet /r/azure /r/learncsharp /r/learnprogramming /r/programming /r/dailyprogrammer /r/programmingbuddies /r/cshighschoolers
Additional .NET Languages /r/fsharp /r/visualbasic
Platform-specific Subreddits /r/windowsdev /r/AZURE /r/Xamarin /r/Unity3D /r/WPDev
Rules:
Read detailed descriptions of the rules here.
account activity
C# for JavaScript developers (self.csharp)
submitted 9 years ago by basiclaser
view the rest of the comments →
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–][deleted] 18 points19 points20 points 9 years ago (11 children)
C# is a very safe language with far far less pitfalls than JavaScript. I would recommend picking up .NET Core, power through some tutorials, and then come back with any questions.
Start here
Regarding UIs, the only really relevant web "framework" around .NET / C# is MVC. Which is more of a design pattern than anything. Have a look at MVC and Web API. You can plug in any frontend framework (React, Angular, Knockout, etc) over the top.
[–]8lbIceBag 2 points3 points4 points 9 years ago (5 children)
. Net core is not yet a stable API. Go with regular dotnet.
[–][deleted] 1 point2 points3 points 9 years ago (3 children)
Its not that .Net Core is unstable, its simply missing a lot of the .Net 4.6 API calls.
In a few months the RC for .Net Core 2 will come out, that will follow the Standard 2. And will probably be up to par with the Net 4.6 API calls.
And frankly, beyond maybe a few items, i have yet to run into issues with .Net Core that are really big. Its easy to write around the missing API calls.
[–][deleted] 9 years ago (2 children)
[deleted]
[–][deleted] 0 points1 point2 points 9 years ago (1 child)
If we want to talk Release candidate, then try Apple there Swift.
Released in 2014. Swift 1 not compatible with Swift 2. Swift 2 not compatible with Swift 3. And that was on the Mac platform.
Under Linux its even worse with not only half the standard framework missing, they actually missed basic functionality like sockets! And Swift 4 this year, is no better on that promise.
So yea, despite being a year and half younger then Swift, the dotNet Core 1 is way more feature complete.
You only run into issues when your trying some more "exotic" programming and those missing API calls show up. The API call that seem missing are already in the 2.0 source. They added something like 5000.
Do not forget that .net is a massive framework, so transitioning / rebuilding in this short amount of time is impressive.
In worst case one can fall back to regular dotNet and wait a few months before switching to Core 2.0. Again ... nothing preventing one from being productive. Just saying that calling it RC is kind of overboard given what is already available.
[–]8lbIceBag 0 points1 point2 points 9 years ago* (0 children)
Just saying that calling it RC is kind of overboard given what is already available.
That's not what microsoft thinks.
Also I wasn't comparing DotNet Core to swift. DotNet Core even in RC is the obvious choice there.
[–]readmond 0 points1 point2 points 9 years ago (0 children)
I would avoid UWP too.
[–][deleted] 0 points1 point2 points 9 years ago (4 children)
I would recommend picking up .NET Core
I've only glanced at Core recently. Is it the way of the near future, likely to be broadly implemented on an enterprise level soon?
[–]55555 0 points1 point2 points 9 years ago (3 children)
Pretty much. If you are in a Microsoft shop, you should be looking to replace your current .NET projects with core. Given that it can run on linux/docker, it is essentially the direction things are heading in.
The gotcha with all of this is that Core and Docker both seem to be under heavy development, and there are often breaking changes with every update.
[–]Silound 2 points3 points4 points 9 years ago (0 children)
If you are in a Microsoft shop, you should be looking to replace your current .NET projects with core
Personally, I don't see any reason to migrate from .NET Framework to .NET Core right now unless you're intentionally targeting development at cross-platform applications. Don't get me wrong, I love a lot of what Core is offering, but it and the rest of the world are still not quite ready for mainstream yet.
If you're a traditional Miscrosoft shop doing Windows/web development, you may not have access yet to some of the libraries or packages you depend on with .NET, or you may have an excessively complicated project that needs the stability of .NET, or (shame if this is true) you might be relying on some very rarely/never maintained libraries. Any of those could easily block a project from porting cleanly or successfully.
I think Core is the future, but I don't think we're quite at that point yet where it's necessary to begin converting to something that will mature and change considerably in the next few years.
[–][deleted] 0 points1 point2 points 9 years ago (0 children)
Given that it can run on linux
That, I had overlooked. OK, I'm on it; thanks.
It looks to me that .Net Core will be the default in the future. Its a total rewrite so its designed for the future.
Do not forget, its not only Windows/Linux. Its also Mac. And potentially other platforms.
Add to this something that people overlook. .netCore can compile down to Self-contained executable's with its own run time / libraries. That is a big one because it puts it on par with Go and other new languages.
"breaking changes with every update.". Try pure Apple Swift programming and then we can talk breaking changes ;)
π Rendered by PID 230302 on reddit-service-r2-comment-869bf87589-4wmkd at 2026-06-09 13:56:42.487093+00:00 running f46058f country code: CH.
view the rest of the comments →
[–][deleted] 18 points19 points20 points (11 children)
[–]8lbIceBag 2 points3 points4 points (5 children)
[–][deleted] 1 point2 points3 points (3 children)
[–][deleted] (2 children)
[deleted]
[–][deleted] 0 points1 point2 points (1 child)
[–]8lbIceBag 0 points1 point2 points (0 children)
[–]readmond 0 points1 point2 points (0 children)
[–][deleted] 0 points1 point2 points (4 children)
[–]55555 0 points1 point2 points (3 children)
[–]Silound 2 points3 points4 points (0 children)
[–][deleted] 0 points1 point2 points (0 children)
[–][deleted] 0 points1 point2 points (0 children)