Showing posts from August, 2020
A linked list is a linear data structure, in which the elements are not stored at contiguous memory locations. In this video tutorial I will show you how to create custom linked list in c#.
Hashing is the process of converting a given key into another value. A hash function is used to generate the new value according to a mathematical algorithm.The main diffrence between hashing and encryption is that hashing in one…
In this video tutorial I will show you how to find the nth highest salary using LINQ in C#
Serilog is a newer logging framework for.NET. It was built with structured logging in mind. It makes it easy to record custom object properties and even output your logs to JSON
In this video tutorial, I will show you how to implement Dependency injection in the C# console application. Dependency injection is a technique to remove tight coupling between classes