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