3
Answers

String Concatenation

I found a below code for string value Concatenation in C# , can some one say why $ is used and explain in detail?
 
string url = $"{baseUrl}{path}"; 
Answers (3)