Roxeem
roxeem.com
Roxeem
@roxeem.com
Software Architect • C# Developer Advocate • .NET/C# Technical Blogger

Blog: roxeem.com
Medium: medium.com/@roxeem
No thank you 😂
September 25, 2025 at 7:08 PM
Lucky you! Hope nothing broke 😉
September 13, 2025 at 5:34 PM
That’s the .NET 10 perf story. Now go and read Stephen Toub's yearly novel to understand the juicy parts 😉
devblogs.microsoft.com/dotnet/perfo...
Performance Improvements in .NET 10 - .NET Blog
Take a tour through hundreds of performance improvements in .NET 10.
devblogs.microsoft.com
September 13, 2025 at 11:02 AM
🪞 Code Cloning & Specialization
JIT duplicates code paths:
• Fast path = 1 length check
• Fallback = full safety
Now works for spans & foreach try/finally. #dotnet
September 13, 2025 at 11:02 AM
📏 Bounds‑Check Elimination
Smarter JIT removes redundant checks using constants, merged assertions, switch‑case analysis & span patterns. Smaller code, faster loops. #dotnet
September 13, 2025 at 11:02 AM
🔍 Devirtualization
Array interface calls (IList, IEnumerable) now devirtualize. Loops & LINQ ops run up to 70% faster. Dynamic PGO + extra inlining = even more speed. #dotnet
September 13, 2025 at 11:02 AM