Hi i am new to programming and i currently have this code:
   namespace Patterns
{
    class Program
    {
        static void Main(string[] args)
        {
            for (int i = 1; i <= 4; i++)//'rows'
            {
                for (int h = 1; h <= 9 - (i*2)+1; h++)
                {
                    Console.Write("#");
                }
                Console.WriteLine("\n" );
            }
        }
    }
}
This produces this output:
########
######
####
##
the number of hashes is correct as i am going from 8, 6, 4, 2 but i need to add an extra space every time i go onto a new line. How do i make it so the output is as follows?
########
 ######
  ####
   ## 
Thanks, Umer