Shovel.Vm.Vm.IncrementCells C# (CSharp) Метод

IncrementCells() статический приватный Метод

static private IncrementCells ( int cells ) : void
cells int
Результат void
        void IncrementCells(int cells)
        {
            this.usedCells += cells;
        }

Usage Example

Пример #1
0
 static void HandleLget(Vm vm)
 {
     var instruction = vm.CurrentInstruction ();
     var args = (int[])instruction.Arguments;
     vm.stack.Push (FindFrame (vm.currentEnvironment, args [0]).Values [args [1]]);
     vm.IncrementCells (1);
     vm.programCounter++;
 }
All Usage Examples Of Shovel.Vm.Vm::IncrementCells
Vm