dieRolls() public method

public dieRolls ( string dice ) : int[]
dice string
return int[]
Ejemplo n.º 1
0
 static void Main(string[] args)
 {
     RPG x = new RPG();
     string[] a = { "3d6" };
     Console.WriteLine(x.dieRolls(a));
     Console.ReadLine();
 }
Ejemplo n.º 2
0
        static void Main(string[] args)
        {
            RPG x = new RPG();

            string[] a = { "3d6" };
            Console.WriteLine(x.dieRolls(a));
            Console.ReadLine();
        }