top of page
Search


Create a background job with Quartz.Net in .NET Core
There are processes you want to run frequently and automatically in the background of your main application. There are many libraries...

The Tech Platform
Sep 29, 2021


Bad-request vs Unprocessable-entity
Introduction One of the most important aspects of a great API is the way in which it responds to its clients. How it returns the expected...

The Tech Platform
Sep 28, 2021


How To Utilize Interfaces In C#
An “Interface” is similar to an “Abstract Class” in the sense that they can both force implementations. While an Abstract Class can be...

The Tech Platform
Sep 27, 2021


Arguments in C#
In C#, arguments can be passed to parameters either by value or by reference. Passing by reference enables function members, methods,...

The Tech Platform
Sep 25, 2021


Constructors in C#
In C#, a constructor is a special type of method that is automatically executed when an object of a class is created. It is used to...

The Tech Platform
Sep 25, 2021


How to use the mediator design pattern in C#
Design patterns provide solutions to common design problems and help reduce complexity in code. One such pattern is the mediator design...

The Tech Platform
Sep 22, 2021


How to use Lambda Expression in C#
Let us see some practical examples where lambda expressions can be used in C#. Scenario 1 Imagine a scenario where a list of strings...

The Tech Platform
Sep 13, 2021


Mystery of Equality in C#: IEquatable<T>, IEqualityComparer<T>, IComparable<T>, IComparer<T>
What is the difference between these confusing words? They are very similar to each other. In this article, we will learn everything...

The Tech Platform
Sep 8, 2021


Ways to handle errors in .NET
Error handling is always an essential part of an application. When processing some business logic requests, it’s always necessary to let...

The Tech Platform
Sep 6, 2021


Target-typed new() expressions in C# 9
“Target typing” is a term used for when an expression gets its type from the context of where it’s being used. In C# 9.0 some expressions...

The Tech Platform
Sep 6, 2021
bottom of page
