ZForge.Controls.XPTable.Models.RowCollection.this C# (CSharp) Метод

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

Gets the Row at the specified index
public this ( int index ) : Row
index int
Результат Row
        public Row this[int index]
        {
            get
            {
                if (index < 0 || index >= this.Count)
                {
                    return null;
                }

                return this.List[index] as Row;
            }
        }