How to repeat the characters X times in C# ?

You can use the string constructor and pass the character that you wish to be present in it. The string constructor also takes the second parameter to specify the number of times the character to be repeated.

How to repeat the characters X times in C# ?

Below is a sample code snippet demonstrating how the string constructor can be used to repeat * 4 times.

using System;

namespace ACCode
{
    class Program
    {
        static void Main(string[] args)
        {
            int X = 4;
            string output = new String('*', X);
            Console.WriteLine(output);
            Console.ReadLine();
        }
       

    } 
}