Answers for "placeholder syntax c# with ("

C#
3

placeholder syntax c#

string name = "mustafa";
int age = 22;
Console.WriteLine("Hi {0} you are {1} years old.", name, age);
======================OUTPUT===================================
>>  'Hi mustafa you are 22 years old.'
Posted by: Guest on January-08-2021

C# Answers by Framework

Browse Popular Code Answers by Language