Argentini.Halide.DatabaseRow.this C# (CSharp) Method

this() public method

Return the DatabaseItem at the specified index, or set the value.
public this ( int ColumnIndex ) : DatabaseItem
ColumnIndex int The index number of the column from which to retrieve the DatabaseItem.
return DatabaseItem
        public DatabaseItem this[int ColumnIndex]
        {
            get
            {
                return _dataItems[ColumnIndex];
            }
        }

Same methods

DatabaseRow::this ( String columnName ) : DatabaseItem