#csharp
Read more stories on Hashnode
Articles with this tag
I've recently come across a story of a developer who got told to refactor all of his switch expressions into switch statements because the company...
What is LINQ? LINQ is 'Language Integrated Query'. LINQ queries allow you to extract data from enumerables (lists, arrays, etc.) in a similar way to...
Are you multithready ready? · What is it? Multithreading is using separate threads to complete separate tasks. If you go too far down the ‘what is a...
Why do we need Dependency Injection? Because ‘Dependency Inversion’ is the D in SOLID and dependency injection is the method we use to achieve this....