Delegates in C# – Part 2
To understand C# delegates I would suggest you to refer previous post Delegates in C# – Part 1 as this … Continue reading Delegates in C# – Part 2
To understand C# delegates I would suggest you to refer previous post Delegates in C# – Part 1 as this … Continue reading Delegates in C# – Part 2
Merge Sort In data structure, there are may sorting algorithms like Bubble sort, Selection sort, Insertion sort, Merge sort, Quick … Continue reading Merge Sort – C# Example
PIVOT There are cases when we need to transpose column values to column names and in such specific cases it … Continue reading PIVOT and UNPIVOT in Sql Server
Ranking functions in SQL Server are used to give some rank (It could be unique or duplicate rank) to each … Continue reading Ranking functions in sql Server
Although to optimize your query in SQL Server you should have deep understanding with different SQL constructs, It would be … Continue reading SQL Basic Performance Optimization
Singleton class Singleton is a design pattern which restricts instantiation of a class to a single object which means you … Continue reading Singleton class Vs Static class
In a simple term a delegate is a pointer to function. Or in more simpler terms, delegate is a reference … Continue reading Delegates in C# – Part 1