top of page
Search
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 2, 2021
What Is yield and How Does It Work in C#?
C# capabilities keep expanding from year to year. New features enrich software development. However, their advantages may not always be...
The Tech Platform
Sep 2, 2021
How to bind [FromRoute] and [FromBody] into one model in .NET 5
There are several ways in .NET 5 Web Api to bind request data into a model. Attributes such as [FromBody] or [FromRoute] can be used for...
The Tech Platform
Aug 31, 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 18, 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 9, 2021
S.O.L.I.D. BASIC PRINCIPLES OF C#
In Object-Oriented Programming (OOP), this acronym is used to interpret software design. It makes the concepts easily understandable and...
The Tech Platform
Jul 26, 2021
Secrets of .NET Async/Await
Async/await is a feature of the .NET framework that allows developers to write asynchronous code in a more readable and maintainable way....
The Tech Platform
Jul 23, 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 20, 2021
How to use Redis and Lua Scripts in a C# ASP.NET Core Microservice Architecture
In this article, we will explore how to use StackExchange.Redis in an ASP.NET Core application to access a Redis server running in...
bottom of page