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();
        }