Contact: aviboots(AT)netvision.net.il
41,163 questions
53,655 answers
573 users
using System; class Program { static void Main(string[] args) { string repeated = new string('*', 10); // Repeats '*' 10 times Console.WriteLine(repeated); } } /* run: ********** */