17
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
this post was submitted on 31 May 2025
17 points (94.7% liked)
.NET
1726 readers
3 users here now
Getting started
Useful resources
IDEs and code editors
- Visual Studio (Windows/Mac)
- Rider (Windows/Mac/Linux)
- Visual Studio Code (Windows/Mac/Linux)
Tools
Rules
- Rule 1: Follow Lemmy rules
- Rule 2: Be excellent to each other, no hostility towards users for any reason
- Rule 3: No spam of tools/companies/advertisements
Related communities
Wikipedia pages
- .NET (open source & cross platform)
- .NET Framework (proprietary & Windows-only)
founded 2 years ago
MODERATORS
I experimented with it a bit but I just can't take Blazor seriously with its huge bundle sizes and interpreted IL. With AOT you can skip the interpreter and compile directly to wasm, but then the bundle size grows even bigger. I have pretty much given up on Blazor and the fact that Microsoft isn't using it for any of their products should be a clear signal to stay far away.
You can trim the code to some extent but not more than that because of reflection (I really wish reflection could be turned off). But eventually, one could use shared assemblies and download would happen only once for most of the binaries