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