top of page
Search

WebHook integration using ASP.NET Core
Webhooks are a way for an external service to notify your application when an event occurs. This can be used to trigger actions or...
The Tech Platform
Nov 3, 2021

How to Create Data Visualization App with Blazor
Data visualization has become a pivotal aspect of modern applications, providing a compelling way to present complex information...
The Tech Platform
Oct 24, 2021

How to use the mediator design pattern in C#
Design patterns provide solutions to common design problems and help reduce complexity in code. One such pattern is the mediator design...
The Tech Platform
Sep 22, 2021


How to use Lambda Expression in C#
Let us see some practical examples where lambda expressions can be used in C#. Scenario 1 Imagine a scenario where a list of strings...
The Tech Platform
Sep 13, 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


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

Top 8 Programming Languages For Game Developers
Game Developers use Programming Languages to create a game's settings and mechanics. The Choice of Programming Languages depends on...
The Tech Platform
Jul 23, 2021
bottom of page