12
1
using System;
2
public class Program {
3
public static void Main() {
4
5
string str1 = "Welcome ";
6
string str2 = "to ";
7
string str3 = "CSharp Course";
8
string result = string.Concat(str1, str2, str3);
9
10
Console.WriteLine(result);
11
}
12
}
Cached Result
Welcome to CSharp Course