top of page
Search

How does dependency injection really work?
After performing the good old ‘File -> new project’ routine, I am facing an empty .net core project and a unit test project. Then, I...
The Tech Platform
Apr 5, 2021


.NET Console Applications — With Dragonfruit!
A typical .NET console application Mainmethod/ entry point looks like this static void Main(string[] args) { // ... } Arguments are...
The Tech Platform
Apr 1, 2021

Automating .NET Core Services with PostSharp and Aspect-Oriented Code
If you’re writing software targeting .NET then there’s a good chance you’re using Object-Oriented principles to do your work. In the...
The Tech Platform
Mar 30, 2021

Why should I migrate my .NET Framework applications to .NET Core/.NET 5?
This post is completely based on my personal opinion and on my experience with the .NET platform over the last 15 years. Therefore, it...
The Tech Platform
Mar 29, 2021


How to Convert XLSX to CSV using C# in .NET Framework
Spreadsheet software like Excel provides a simple and user-friendly way to organize and store data strings in a way that can be instantly...
The Tech Platform
Mar 29, 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 27, 2021


Use gRPC in the browser with gRPC-Web and .NET5
Build High-Performance Services using gRPC and .NET 5 In this article, we will explore Microsoft's gRPC-Web and how it can be used to...
The Tech Platform
Mar 26, 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

.Net Design Pattern
.NET design pattern refers to a set of reusable solutions for commonly occurring software design problems in the .NET framework. These...
The Tech Platform
Mar 25, 2021

.Net Core Dependency Injection
Before we begin with .NET Core Dependency Injection, it is important to understand the significance of Dependency Injection and why it is...
The Tech Platform
Mar 25, 2021
bottom of page