LibiadaCore.Core.CongenericChain.RemoveAt C# (CSharp) Méthode

RemoveAt() public méthode

Removes element from given position. Also clears interval manager of chain.
public RemoveAt ( int index ) : void
index int /// Index of position. ///
Résultat void
        public override void RemoveAt(int index)
        {
            intervalsManager = null;
            positions.Remove(index);
        }