Bart Wullems of The Art of Simplicity shares his experience using Microsoft's .NET Source Browser to take a peek at a particular API's internals. The code documentation pages have links to the corresponding Github repositories where you can see exactly how any given function is implemented.

"Browse the .NET code base with the .NET Source Browser"

https://bartwullems.blogspot.com/2025/06/browse-net-code-base-with-net-source.html

#programming #dotnetcore #documentation #education #opensource

Cleaned up discovery-related workflows:

✔ Structured logging
✔ Better data shape for UI
✔ Stronger test coverage

Larger procedural logic is on deck — one rule at a time.

#BuildInPublic #LegalTech #dotnetcore

Focused on backend resiliency today. Every operation now logs success/failure with full traceability. Sleek, testable, and built for scale.
#BackendDev #DotNetCore #Auditing #DevLog #CleanArchitecture

Tested duplicate assignment edge cases today and watched the constraints + logs catch it like clockwork. This is what good engineering feels like.

#SoftwareCraftsmanship #dotnetcore #devdiary

InfoWorld contributor Joydip Kanjilal reviews a group of read-only data structures in .NET Core that are optimized to allow very fast thread-safe reads over their data in comparison to plain dictionaries, lists, and hash sets.

Namely: FrozenSet and FrozenDictionary.

He also shows benchmark results, and includes a tutorial written in C#.

"How to use frozen collections in C#"

https://www.infoworld.com/article/4000458/how-to-work-with-frozen-collections-in-c-sharp.html

#programming #csharp #datastructures #optimization #dotnetcore