What\'s the most efficient way to concatenate strings?
Following may be one more alternate solution to concatenate multiple strings.
String str1 = "sometext"; string str2 = "some other text"; string afterConcate = $"{str1}{str2}";
string interpolation