#dotnetcore
Read more stories on Hashnode
Articles with this tag
If you have been programming for any length of time, you may well have come across higher order functions, but (like me) may not have fully...
If you've spent much time around C# and .NET, it's likely that you will have come across LINQ (Language-Integrated Query), which allows you to use a...
Dependency injection (DI) is a wonderful thing. Simply add your dependency as a parameter to the constructor (most commonly) of your class, register...
I'm not ashamed to admit that for a long time I avoided writing tests for my code. I saw it as something that took up precious time that I could have...
I recently wrote a blog post introducing some of my favourite NuGet packages: My Top 4 NuGet Packages for ASP.NET Core. In that post, I briefly...
Method overloading and overriding are two common forms of polymorphism ( the ability for a method or class to have multiple forms) in C# that are...