#net
Read more stories on Hashnode
Articles with this tag
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...
`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...
Did you know that in .NET you can resolve specific dependencies using Factories? · Say that you have an interface and that you want to specify its...
You should keep an eye on Maintainability for every project which should live long. With NDepend, you can measure it for .NET projects · Software systems...
Instead of using if-else or switch blocks to handle exceptions, you can do it gracefully using the 'when' keyword · From C# 6 on, you can use the when...