# Exercise 1

What is the output of following program?

using System;

class MainClass
{
  public static void Main ()
  {
    Console.Write("My name is {}", "Talha");
  }
}
1
2
3
4
5
6
7
8
9

Can you have an empty format specifier like {}?

Last Updated: Apr 26, 2020, 5:27 AM