CellsAutomate.Food.FoodMatrix.FoodMatrix C# (CSharp) Метод

FoodMatrix() публичный Метод

public FoodMatrix ( int length, int height, IFoodDistributionStrategy strategy ) : System.Drawing
length int
height int
strategy IFoodDistributionStrategy
Результат System.Drawing
        public FoodMatrix(int length, int height, IFoodDistributionStrategy strategy)
        {
            _matrix = new int[length, height];
            _strategy = strategy;
        }