1.

Select the output for the following set of code : class z { public string name1; public string address; public void show() { Console.WriteLine("{0} is in city{1}", name1, " ", address); } } class Program { static void Main(string[] args) { z n = new z(); n.name1 = "harsh"; n.address = "new delhi"; n.show(); Console.ReadLine(); } }

A. Syntax error
B. {0} is in city{1} harsh new delhi
C. Harsh is in new delhi
D. Run successfully prints nothing
Answer» D. Run successfully prints nothing


Discussion

No Comment Found