LibiadaCore.Core.CongenericChain.Set C# (CSharp) Метод

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

Sets item in provided position. Clears position if element not from this chain. Does nothing if position is empty and element not from this chain.
public Set ( IBaseObject item, int index ) : void
item IBaseObject /// The item. ///
index int /// The index of position. ///
Результат void
        public override void Set(IBaseObject item, int index)
        {
            if (element.Equals(item))
            {
                Set(index);
            }
        }

Same methods

CongenericChain::Set ( int index ) : void