AForge.Genetic.Population.this C# (CSharp) Метод

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

Get chromosome with specified index.
Allows to access individuals of the population.
public this ( int index ) : IChromosome
index int Chromosome's index to retrieve.
Результат IChromosome
        public IChromosome this[int index]
        {
            get { return population[index]; }
        }