LyricsEngine.LRC.SimpleLRCTimeAndLineCollection.this C# (CSharp) Метод

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

public this ( int index ) : SimpleLRCTimeAndLine
index int
Результат SimpleLRCTimeAndLine
        public SimpleLRCTimeAndLine this[int index]
        {
            get
            {
                if (index < _items.Length)
                {
                    return (SimpleLRCTimeAndLine) _items[index];
                }
                return null;
            }
        }