flareOut() public method

public flareOut ( string snowflake ) : string[]
snowflake string
return string[]
Exemplo n.º 1
0
 static void Main(string[] args)
 {
     Snowflakes x = new Snowflakes();
     string[] a = {".",
      "..",
      "***",
      "...."};
     Console.WriteLine(x.flareOut(a));
     Console.ReadLine();
 }
Exemplo n.º 2
0
        static void Main(string[] args)
        {
            Snowflakes x = new Snowflakes();

            string[] a = { ".",
                           "..",
                           "***",
                           "...." };
            Console.WriteLine(x.flareOut(a));
            Console.ReadLine();
        }