LyricsEngine.LRC.SimpleLRCTimeAndLineCollection.this C# (CSharp) Method

this() public method

public this ( int index ) : SimpleLRCTimeAndLine
index int
return SimpleLRCTimeAndLine
        public SimpleLRCTimeAndLine this[int index]
        {
            get
            {
                if (index < _items.Length)
                {
                    return (SimpleLRCTimeAndLine) _items[index];
                }
                return null;
            }
        }