this post was submitted on 20 Mar 2024
109 points (95.8% liked)
Programmer Humor
32361 readers
42 users here now
Post funny things about programming here! (Or just rant about your favourite programming language.)
Rules:
- Posts must be relevant to programming, programmers, or computer science.
- No NSFW content.
- Jokes must be in good taste. No hate speech, bigotry, etc.
founded 5 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
As a junior dev, who mainly works with C#, wf improvements are they talking about? I always thought that C++ is way better for when performance is important, like in emulation. At my company, the seniors keep talking about how we should move away form .NET to C++.
Usually some excuse about being more accessible from someone that just doesn't want to leave their own comfort zone - non professionals playing at being professional after coming across our github. See also: complaints about not having an installer download (strictly clone and build)
Ok, to be fair, if it's a user-facing application, that's obnoxious
C# can have native performance, if you sit down and really optimize shit until you go mad, you can have absolutely minimal runtime friction. The .Net runtime despite it's stupid fucking name from a bygone era is actually really smart with code gen.
This of course depends on the code, project and your own skill level