public stuinfoRow AddstuinfoRow(string stu_id, string stu_name, string sex, string classes, int ages) { stuinfoRow rowstuinfoRow = ((stuinfoRow)(this.NewRow())); object[] columnValuesArray = new object[] { stu_id, stu_name, sex, classes, ages }; rowstuinfoRow.ItemArray = columnValuesArray; this.Rows.Add(rowstuinfoRow); return(rowstuinfoRow); }
public stuinfoRowChangeEvent(stuinfoRow row, global::System.Data.DataRowAction action) { this.eventRow = row; this.eventAction = action; }
public void RemovestuinfoRow(stuinfoRow row) { this.Rows.Remove(row); }
public void AddstuinfoRow(stuinfoRow row) { this.Rows.Add(row); }