String Template Format
Which format to use for string templates in different languages
A relatively recent addition to programming languages are string templates, but I struggle to remember the correct format between C#, VB.Net and JavaScript...
C#var test = $"Hello {name}";
VB.NetDim test As String = $"Hello {name}"
JavaScriptlet test = `Hello ${name}`