Use Google Translate programmatically
It's quite easy to utilize Google Translate API to programmatically translate content from language A to language B as shown in this C# demo.
Tuple Patterns in C# 8.0
The new C# 8.0 Tuple Patterns are a very convenient way to allow matching of more than one value in a single pattern matching expression.
Switch Expressions in C# 8.0
The new C# 8.0 switch expressions are a very convenient way to map information in a compact fashion.
Replace JavaScript with client-side C#
Replace JavaScript with C# code on the client side with Blazor in ASP.NET Core 3.0
StringBuilding in C#
Strings are a vital part of applications and building strings can take up a lot of time, along with also causing a performance lag in the applications.