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

this() public method

Return the DatabaseItem of the specified name. If you try to retrieve an item that does not exist, one is created automatically.
public this ( String columnName ) : DatabaseItem
columnName String The column name of the DatabaseItem.
return DatabaseItem
        public DatabaseItem this[String columnName]
        {
            get
            {
                if (_dataIndex.Contains(columnName.ToLower()))
                {
                    return _dataItems[(int)_dataIndex[columnName.ToLower()]];
                }

                else
                {
                    AddColumn(columnName.ToLower(), "");
                    return _dataItems[(int)_dataIndex[columnName.ToLower()]];
                }
            }
        }

Same methods

DatabaseRow::this ( int ColumnIndex ) : DatabaseItem