CCChris Cooperincoopsblog.hashnode.dev·Dec 15, 2022 · 1 min readString.format is so old schoolAll my dev life I have used string.format("TEXT {0} MORE TEXT",variableValue) to add variable values into a string, but the other day I found the $ feature, which arrived in C# 6. How you use string.format var age = 64String.format("my am {0} old tod...00