LibiadaCore.Core.CongenericChain.Set C# (CSharp) Method

Set() public method

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. ///
return void
        public override void Set(IBaseObject item, int index)
        {
            if (element.Equals(item))
            {
                Set(index);
            }
        }

Same methods

CongenericChain::Set ( int index ) : void