String Interpolation
$"…" literals, format/alignment, raw $""", handlers, FormattableString, culture, SQL
An interpolated string literal is a string token prefixed with $ whose {…} holes contain C# expressions: $"Hello {name}, you owe {amount:C2}". The compiler decides what code to emit from the target type: assigned to string, C# 10+…