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

this() public method

Used to quickly retrieve a single column from the database row that has been read.
public this ( int x ) : DatabaseItem
x int Index number of the column to return.
return DatabaseItem
        public DatabaseItem this[int x]
        {
            get
            {
                return Column[x];
            }
        }

Same methods

H3DataRow::this ( String columnName ) : DatabaseItem