LibiadaCore.Core.BaseChain.DeleteAt C# (CSharp) Method

DeleteAt() public method

Removes given position.
public DeleteAt ( int index ) : void
index int /// Index of deleted position. ///
return void
        public override void DeleteAt(int index)
        {
            building = building.DeleteAt(index);

            // TODO: remove element from alphabet if last entry is removed.
        }