In this tutorial, we are going to learn some topics such as C# extension method ...
Have you ever thought about customizing some classes? An extension method enables us to extend a class without damaging or changing the reel codes of the class that we want to modify.
[Read More]
In this tutorial, we are going to discover the Heap data structure. In the previous post, we learned the queue data structure. A heap is an implementation of the priority queue that does not apply the first in last out principle because the priority queue removes items depending on their...
[Read More]
In this tutorial, we are going to discover the stack data, the queue data and LinkedList data structure. As usuall, we start learning by asking questions to deep dive into subjects. Data structure is used to store and organize data. Imagine that you want to fecth a user data from...
[Read More]