Just a simple question
Without using your compiler, guess what will be the output of this code:
static void Main(string[] args)
{
string s = "A";
s = string.Concat(s, "B");
s = string.Join(s, new string[] { "1", "2", "3" });
Console.WriteLine(s);
Console.ReadLine();
}
and why?