c# string variable code example
Example 1: c# write variable in string
int age = 22;
Console.WriteLine($"Age: {age}");
Example 2: how to make a string in c#
string teststring = "";
int age = 22;
Console.WriteLine($"Age: {age}");
string teststring = "";