#csharp
Read more stories on Hashnode
Articles with this tag
Writing concise code. · One of the major feature of C# version 7.0 was pattern matching. Pattern matching is a way to recognize structure or pattern...
Key factors to have better software design. · Some of the most important things to consider when designing a software is to make software entities...
Simple implementation to achieve asynchrony. · In my previous post, I provided a brief intro to asynchrony. In this post, I will continue with TAP...
Making things happen, just not all at once. · Before continuing asynchrony, I would like mention some misconception about being "asynchronous". Being...
Understanding lambda expression and closures in C# · Introduction variable : a symbolic name associated with a value and whose associated value may be...
Delegates made simple. · Introduction Delegates in C# are like the instructions you give to different pieces of code, telling them what to do and how to...