dieRolls() 공개 메소드

public dieRolls ( string dice ) : int[]
dice string
리턴 int[]
예제 #1
0
 static void Main(string[] args)
 {
     RPG x = new RPG();
     string[] a = { "3d6" };
     Console.WriteLine(x.dieRolls(a));
     Console.ReadLine();
 }
예제 #2
0
        static void Main(string[] args)
        {
            RPG x = new RPG();

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