FastColoredTextBoxNS.FileTextSource.this C# (CSharp) Method

this() public method

public this ( int i ) : System.Line
i int
return System.Line
        public override Line this[int i]
        {
            get
            {
                if (base.lines[i] != null)
                    return lines[i];
                else
                    LoadLineFromSourceFile(i);

                return lines[i];
            }
            set
            {
                throw new NotImplementedException();
            }
        }