コード例 #1
0
            public dtRSandCRRow AdddtRSandCRRow(string BookTitle, string AuthorLastName, string Price, double YTDSales)
            {
                dtRSandCRRow rowdtRSandCRRow = ((dtRSandCRRow)(this.NewRow()));

                rowdtRSandCRRow.ItemArray = new object[] {
                    BookTitle,
                    AuthorLastName,
                    Price,
                    YTDSales
                };
                this.Rows.Add(rowdtRSandCRRow);
                return(rowdtRSandCRRow);
            }
コード例 #2
0
 public dtRSandCRRowChangeEvent(dtRSandCRRow row, System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
コード例 #3
0
 public void RemovedtRSandCRRow(dtRSandCRRow row)
 {
     this.Rows.Remove(row);
 }
コード例 #4
0
 public void AdddtRSandCRRow(dtRSandCRRow row)
 {
     this.Rows.Add(row);
 }