MCQs>IT & Programming>C#>What would the following code snippet print out: string x = 'test'; string y = 'hello'; Console.WriteLine('{0}, this is a {1}', x, y);
C# MCQs
What would the following code snippet print out: string x = "test"; string y = "hello"; Console.WriteLine("{0}, this is a {1}", x, y);
Answer
Correct Answer: test, this is a hello
Explanation:
Note: This Question is unanswered, help us to find answer for this one