Visual Studio General .NET Core
Nov 20, 2019

Using proper culture with C# string interpolation

Discover the remarkable bug in string interpolation in C# and how it can affect the execution of your code when communicating with JavaScript. Learn about the alternative solution using the FormattableString class to ensure consistent evaluation of interpolated strings, regardless of the system's culture. Don't miss out on this helpful tip for crafting machine-friendly representations!

Development General
Oct 16, 2018

Quick tip: Using format strings with string interpolation in C#

Discover the convenient and readable alternative to string.Format in C# 6 with the introduction of string interpolation syntax. But did you know it also supports format string syntax? Say goodbye to falling back and embrace the succinct and analogous approach. Find out more in the full article.