AForge.Genetic.Population.this C# (CSharp) Method

this() public method

Get chromosome with specified index.
Allows to access individuals of the population.
public this ( int index ) : IChromosome
index int Chromosome's index to retrieve.
return IChromosome
        public IChromosome this[int index]
        {
            get { return population[index]; }
        }