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