write a program in C# to display the following pattern: * * * * * * * * * * * * * * *
static void Main(string[] args) { int i, j; for (i = 1; i <= 5; i++) { for (j = 0; j < i; j++) { Console.Write("*"); } Console.WriteLine(); } Console.ReadKey(); }