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

AddColumn() public method

Add a column to the data set in memory. This is useful when stored procedures used for saving data require optional parameters.
public AddColumn ( String columnName, String columnValue ) : System.Boolean
columnName String Name of the new column.
columnValue String Value of the new column.
return System.Boolean
        public Boolean AddColumn(String columnName, String columnValue)
        {
            return this.Column.AddColumn(columnName.ToLower(), columnValue);
        }