top of page
Search

Upload And Download Multiple Files Using .Net 5.0 Web API
Begin with creating an empty web API project in visual studio and for target, framework choose .Net 5.0. No external packages were used...
The Tech Platform
Oct 11, 2021

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


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


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


The hat (^) and range (..) operators in C#
The hat operator (^) and range operator (..) provide a different syntax for accessing elements in an array: Span, or ReadOnlySpan. The...
The Tech Platform
Aug 18, 2021

A scratch guide to API versioning in ASP.NET Core
If I call an API with a URL of https://mybandapi.com/api/bands/4, I’ll get the following response: { "id": 4, "name": "The Eagles, man" }...
The Tech Platform
Aug 18, 2021

How to upload a file to a folder in ASP.NET Core MVC
In modern web applications, file uploads are an essential feature. In ASP.NET Core MVC, you can easily implement file-uploading...
The Tech Platform
Aug 18, 2021


How to create a microservice
To create a microservice, we need access to the following tools - Visual Studio (For implementing C# based code for the service) SQL...
The Tech Platform
Aug 2, 2021
bottom of page