What does the following code display?
class Concat
{
static void Main()
{
Console.WriteLine(10 + 90 + "A");
Console.WriteLine("A" + 10 + 90);
}
}
What does the following code display?
class Concat
{
static void Main()
{
Console.WriteLine(10 + 90 + "A");
Console.WriteLine("A" + 10 + 90);
}
}