top of page
Search


Send multi-part content to an API from a .NET Core API (.NET 5.0)
Scenario — You are developing a web API that takes form data in its post method. And from that API, you need to call another API that...

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


Refactoring in C#
Refactoring is the process of improving the performance, readability, and complexity of the code by altering its internal structure and...

The Tech Platform
Jun 29, 2021


Delegates and Events in C#
Today's software is not simple anymore it must be Reliable, Scalable, and Maintainable. And no matter what you are building a Monolithic...

The Tech Platform
Jun 22, 2021


How to use Queues in C# with Example
The Queue is a special case collection which represents a first in first out concept. Imagine a queue of people waiting for the bus....

The Tech Platform
Jun 13, 2021


Class vs Struct — C#
The C# language is an extensive thing to learn and any dedicated developer may spend several years studying and learning the language and...

The Tech Platform
Jun 3, 2021


Creating SPA’s using C#
Just for the background SPA enables you to get a desktop app-like experience in a browser. This is possible because of WASM (WebAssembly)...

The Tech Platform
Jun 1, 2021


C# 9.0 : Record Type Simplifies Unit Testing
Microsoft has released C# 9 with .NET 5.0. It has lots of new features. One feature I am particularly excited about is new Record Type in...

The Tech Platform
May 29, 2021


S.O.L.I.D. Principles of Object-Oriented Programming in C#
“SOLID” principles are a set of golden rules used by object-oriented developers since the early 2000s. They set the standard for how to...

The Tech Platform
May 3, 2021


Write a program to print numbers from 1 to 100?
Below is the program to print the Numbers from 1 to 100 in C++, C, Python3, C#, PHP and JavaScript. C++ // C++ program to How will you...

The Tech Platform
Apr 21, 2021
bottom of page
