Answers for "use placeholder to display the element in c#"

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

Code answers related to "use placeholder to display the element in c#"

C# Answers by Framework

Browse Popular Code Answers by Language