top of page
Search

The Tech Platform
Nov 28, 2023
Explore the Latest C# 12 Primary Constructor: What You Need to Know
C# 12 has a cool new feature called the primary constructor, and it's here to simplify how we set up our objects. Before, setting things...

The Tech Platform
Nov 27, 2023
How do I Validate a Phone Number using Regex?
Validating phone numbers in an application is a crucial aspect, especially considering the diverse formats and conventions they can...

The Tech Platform
Oct 31, 2023
Tools to build ASP.NET Blazor Apps
In the ever-changing world of web development, ASP.NET Blazor stands out as an exciting framework by Microsoft. It lets you create...

The Tech Platform
Nov 3, 2022
Introduction to ASP.NET Core
In this article, we will discuss the ASP.NET Core. How it is different from ASP.NET. Will learn why we should use ASP.NET Core. Here we...

The Tech Platform
Nov 1, 2022
FromServices Attributes in ASP.NET Core
ASP.NET Core provides an attribute called FromServices to inject the dependencies directly into the controller's action method. In this...

The Tech Platform
Jun 24, 2022
Run and manage periodic background tasks in ASP.NET Core 6 with C#
So starting from the empy ASP.NET Core 6 template let’s create a simple sample service that represents our business logic that should be...

The Tech Platform
Jun 1, 2022
Options Pattern in C#: How to supply <IOptions>
The IOptions service is used to bind strongly types options class to configuration section and registers it to the Asp.Net Core...

The Tech Platform
May 9, 2022
Difference Between String and string in C#
String (capital S) is a class in the .NET framework in the System namespace. The fully qualified name is System.String. Whereas, the...

The Tech Platform
Dec 9, 2021
what is Stack and Queue in C#?
Stack Stack class represents a last-in, first out collection of object. It is used when you need a last-in, first-out access of items....

The Tech Platform
Dec 9, 2021
How to write URL shortener in .NET5?
In this series we will try to show you how easy it is to write a service that shortens URLs with .NET5. On top of that, we will add an...
bottom of page