Exemplo n.º 1
0
            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);
            }
Exemplo n.º 2
0
 public stuinfoRowChangeEvent(stuinfoRow row, global::System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
Exemplo n.º 3
0
 public void RemovestuinfoRow(stuinfoRow row)
 {
     this.Rows.Remove(row);
 }
Exemplo n.º 4
0
 public void AddstuinfoRow(stuinfoRow row)
 {
     this.Rows.Add(row);
 }