top of page
Search


Extension Method in C#
Extension methods are static methods, which are called as if they were instance methods on the extended type. With Extension methods, you...

The Tech Platform
Feb 23, 2022


How to properly dispose in AspNetCore application?
The quick answer implies that your AspNetCore aplication is stateless. Meaning that all state that is required for your application to...

The Tech Platform
Jan 31, 2022


Arithmetic Operators in C#
Operators are a very useful thing in computing value. While writing a program, you need various types of operators to calculate the...

The Tech Platform
Jan 22, 2022


Multithreading and parallelism with C # examples in the .NET platform.
What is multithreading? Multithreading— it is the ability of a platform (application) to perform multiple operations in one process. One...

The Tech Platform
Oct 7, 2021


Introduction to C# comments
In this article, we explore how to write comments. Comments are simply human-readable pieces of text that are not compiled nor...

The Tech Platform
Aug 31, 2021


AutoMapper Extensions in .Net Core
In C# mapping of one POCO class object to another POCO class object can be achieved by assigning source property to destination property...

The Tech Platform
Jul 24, 2021


Micro APIs with OpenFaaS and .NET
Serverless functions are becoming increasingly popular, but not everything fits into that model. And although it is possible to create an...

The Tech Platform
Jul 13, 2021


Array iteration performance in C#
Implementing the sum of the items in an array is very simple. I think most developers would implement it this way: static int Sum(int[]...

The Tech Platform
Jul 12, 2021


Factory Design Pattern (C#)
The Factory Design Pattern is a creational pattern that provides an interface for creating objects in a super-class but allows subclasses...

The Tech Platform
Apr 5, 2021


Why Does An Abstract Class Need A Constructor?
Abstract classes, a fundamental concept in object-oriented programming, serve as blueprints for other classes, providing a structure that...

The Tech Platform
Jun 22, 2020
bottom of page
