Simple types / Strings

using System;

var str = new string('7'3); 
// str is "777"
Console.WriteLine($"str is {str}");