示例#1
0
            public ExamplesRow AddExamplesRow(string Category, string Name, string Message, string Description)
            {
                ExamplesRow rowExamplesRow = ((ExamplesRow)(this.NewRow()));

                object[] columnValuesArray = new object[] {
                    Category,
                    Name,
                    Message,
                    Description
                };
                rowExamplesRow.ItemArray = columnValuesArray;
                this.Rows.Add(rowExamplesRow);
                return(rowExamplesRow);
            }
示例#2
0
 public ExamplesRowChangeEvent(ExamplesRow row, global::System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
示例#3
0
 public void RemoveExamplesRow(ExamplesRow row)
 {
     this.Rows.Remove(row);
 }
示例#4
0
 public void AddExamplesRow(ExamplesRow row)
 {
     this.Rows.Add(row);
 }