✅ Resources for .NET in depth
Hello Everyone,
I am a .Net developer with 1.5 YOE mostly working with APIs in ASP.NET Core. Recently I have been feeling like I need to get really deep in the framework and understand what happens under the hood, etc..
Therefore I am writing this Post, if you can share resources that can help or had a similar experience please share it with me
Thank you!
2 Replies
here's some resources that I find interesting / look at often relating to the .NET runtime - not sure of the level of advancedness you were wanting, but these are definitely on the more advanced side:
- Book of the runtime: https://github.com/dotnet/runtime/blob/main/docs/design/coreclr/botr/README.md
- Memory model: https://github.com/dotnet/runtime/blob/main/docs/design/specs/Memory-model.md
- ECMA-335 spec + augments: https://www.ecma-international.org/wp-content/uploads/ECMA-335_6th_edition_june_2012.pdf, https://github.com/dotnet/runtime/blob/main/docs/design/specs/Ecma-335-Augments.md
also, just looking at the code in dotnet/runtime repo (https://github.com/dotnet/runtime) is very helpful
Thank you so much I will have a look at them