Dotnet Roadmap.pdf
4 MB
🛣 Дорожная карта для .NET-разработчика от Milan Milanović
Репозиторий содержит ссылки на ресурсы для дальнейшего изучения.
📌 Understanding the .NET ecosystem
• .NET runtimes
• .NET Framework
• .NET Core
• The One .NET - .NET 5
• The current - .NET 8
• .NET Standard
📌 Learning resources
• C#
• General Development Skills
• ASP.NET Core
• Client-Side .NET
• Databases
• ORM
• Caching
• Logging
• Real-time communication
• Background tasks
• Object Mapping
• Testing
• Monitoring & Telemetry
• Messaging
• Containerization
• Cloud
• Continuous Integration & Delivery (CI/CD)
• .NET Libraries
📌 Additional considerations
• Performance best practices
• Profiling and diagnostics
• Performance best practices
• Security and Cryptography
📌 Additional learning resources
• Books
• YouTube Channels
• Blogs
• Podcasts
• Other
📌 Tools
#roadmap
Репозиторий содержит ссылки на ресурсы для дальнейшего изучения.
📌 Understanding the .NET ecosystem
• .NET runtimes
• .NET Framework
• .NET Core
• The One .NET - .NET 5
• The current - .NET 8
• .NET Standard
📌 Learning resources
• C#
• General Development Skills
• ASP.NET Core
• Client-Side .NET
• Databases
• ORM
• Caching
• Logging
• Real-time communication
• Background tasks
• Object Mapping
• Testing
• Monitoring & Telemetry
• Messaging
• Containerization
• Cloud
• Continuous Integration & Delivery (CI/CD)
• .NET Libraries
📌 Additional considerations
• Performance best practices
• Profiling and diagnostics
• Performance best practices
• Security and Cryptography
📌 Additional learning resources
• Books
• YouTube Channels
• Blogs
• Podcasts
• Other
📌 Tools
#roadmap
👍47❤5🔥5😁4
KeyValuePair<TK,TV>
не стоит использовать в качестве ключа хеш-таблиц, так как он не переопределяет методы Equals
/HashCode
.Это может привести к снижению производительности в 100 раз, так как хеш-код KVP будет одинаковым, если ключ и значение совпадают. Почему?
Потому что по умолчанию для blittable структур хеш-код является просто операцией XOR (^) всех полей (смотрите третий скрин).
Большое время обработки вызвано коллизиями и последовательным поиском, а также огромными выделениями памяти, связанным с упаковкой каждого экземпляра для вызова метода
Equals
.👉 Подробнее
#dotnet #csharp #performance #tip #benchmarks
Please open Telegram to view this post
VIEW IN TELEGRAM
Please open Telegram to view this post
VIEW IN TELEGRAM
👍23🤔6😁1