toNextLevel() public method

public toNextLevel ( int expNeeded, int received ) : int
expNeeded int
received int
return int
Ejemplo n.º 1
0
 static void Main(string[] args)
 {
     LevelUp s = new LevelUp();
     int[] a = { 150, 450, 900, 1800 };
     Console.WriteLine(s.toNextLevel(a, 612));
     Console.ReadLine();
 }
Ejemplo n.º 2
0
        static void Main(string[] args)
        {
            LevelUp s = new LevelUp();

            int[] a = { 150, 450, 900, 1800 };
            Console.WriteLine(s.toNextLevel(a, 612));
            Console.ReadLine();
        }