#csharp
Read more stories on Hashnode
Articles with this tag
Code Coverage is a valuable metric in software development, especially when it comes to testing. It provides insights into how much of your codebase...
Even when the internal data is the same, sometimes you can represent it in different ways. Think of the DateTime structure: by using different...
You have a collection of items. You want to retrieve N elements randomly. Which alternatives do we have? · One of the most common operations when dealing...
A simple way to improve efficiency is knowing your IDE shortcuts. Let’s learn how to create custom ones to generate code automatically. · One of the best...
`ObservableCollection<T>` is a data type that allows you to react when an item is added or removed from the collection. Let's learn more! · Imagine you...
One of the most common traits of C# developers is the excessive usage of interfaces. For every non-DTO class we define, we usually also create the...