Just a very simple way to (hopefully) improve workflow.
If you have to set a text value / string value that includes other variables instead of typing
string someString = "Hello my name is " + nameVar + " and I am level " + levelVar;
You can also use $ to include inline vars in brackets like this
string someString = $"Hello my name is {nameVar} and I am level {levelVar}";
Personally I really like doing it this way because you don’t have to open and close the string everytime.
Hope it helps someone