LibiadaCore.Core.CongenericChain.Get C# (CSharp) 메소드

Get() 공개 메소드

Gets element by position index. If position is empty returns NullValue.
public Get ( int index ) : IBaseObject
index int /// Index of position. ///
리턴 IBaseObject
        public override IBaseObject Get(int index)
        {
            return positions.Contains(index) ? element.Clone() : NullValue.Instance();
        }