---
title: "How to print Pyramid Pattern in C# ?"  
description: "How to print Pyramid Pattern in C# ?"  
author: "Sanat Shukla"  
published: 2018-09-03  
canonical: https://answers.mindstick.com/qa/49596/how-to-print-pyramid-pattern-in-c-sharp  
category: "technology"  
reading_time: 1 minute  

---

# How to print Pyramid Pattern in C# ?

![How to print Pyramid Pattern in C# ?](https://answers.mindstick.com/questionanswer/e9555ef2-da1d-46b4-88b8-df536208c414/images/f7329c11-b11f-4706-b932-4a0eabc22a24.png)\

## Answers

### Answer by Sanat Shukla

![How to print Pyramid Pattern in C# ?](https://answers.mindstick.com/questionanswer/e9555ef2-da1d-46b4-88b8-df536208c414/images/823aa993-b11e-4e28-9193-589e9f6ceafb.png)

```
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;
namespace ConsoleApplication1{    class Program    {        static void Main(string[] args)        {             int x = 15; // Total Number of Lines...             for (int i = 1; i<= x; i++)              {                 //loop to print spaces                 for (int j = 1; j <= (x - i); j++)                    Console.Write(" ");                 //loop to print stars                for (int t = 1; t <i * 2; t++)                   Console.Write("*");                Console.WriteLine();              }           Console.ReadLine();        }     }  }
```

![How to print Pyramid Pattern in C# ?](https://answers.mindstick.com/questionanswer/e9555ef2-da1d-46b4-88b8-df536208c414/images/af003057-d773-4113-a4d3-52fcb561f387.png)\


---

Original Source: https://answers.mindstick.com/qa/49596/how-to-print-pyramid-pattern-in-c-sharp

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
