top of page
Search
The Tech Platform
Mar 27, 2021
Use System.IO.Pipelines and System.Threading.Channels APIs to Boost Performance
How to use System.IO.Pipelines and System.Threading.Channels APIs to speed up processing BlockingCollection involves blocking; there are...
The Tech Platform
Mar 26, 2021
Introduction of Garbage Collector in C#
Garbage Collector is nothing but, it is a feature provided by CLR which helps us to clean or destroy the unused managed objects. By...
The Tech Platform
Mar 25, 2021
How to avoid fat controllers in ASP.NET Web API
In this article, you will learn about the Fat controllers in ASP.NET web API and how to avoid it. What is Fat controller? A fat...
The Tech Platform
Mar 25, 2021
5 Reasons to Not Use Observables in C#
Observables can be a pain to debug. Most debuggers aren’t particularly suited for tracing streams of data, and the stack traces you get...
The Tech Platform
Mar 20, 2021
Quick tip: when can I use “when” in C#?
The C# language contains really nice and useful features that are not so common to see across the projects we normally work on. One of...
The Tech Platform
Mar 20, 2021
C# tips — Readonly vs const? Are there any differences?
For any of us who is a software developer, the only thing we are 100% during our journey writing code and delivering software is that we...
The Tech Platform
Mar 18, 2021
Program: Rotate array to the right given a pivot
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace...
The Tech Platform
Mar 18, 2021
Generating Code in C#
How Source Generators, a New Feature Coming In C# 9.0, Will Help You Automate Code Creation To start, let’s look at what it takes to...
The Tech Platform
Mar 17, 2021
What’s In A Hash Code?
Diving Deep Into Hash Code Creation And Usage In C# Abstract .NET developers have wrestled with creating hash codes for objects ever...
The Tech Platform
Mar 13, 2021
C# Tricks & Features
Understanding the tricks behind any programming language can make your code to be shorter and more efficient. Expression-bodied members...
bottom of page