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

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

static private IncrementCellsHerald ( int cells ) : void
cells int
Результат void
        void IncrementCellsHerald(int cells)
        {
            if (this.cellsQuota != null && cells > this.cellsQuota.Value) {
                throw new ShovelCellQuotaExceededException ();
            }
        }
Vm