示例#1
0
            public CitiesRow AddCitiesRow(string CityName)
            {
                CitiesRow rowCitiesRow = ((CitiesRow)(this.NewRow()));

                rowCitiesRow.ItemArray = new object[] {
                    null,
                    CityName
                };
                this.Rows.Add(rowCitiesRow);
                return(rowCitiesRow);
            }
示例#2
0
 public CitiesRowChangeEvent(CitiesRow row, DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
示例#3
0
 public void RemoveCitiesRow(CitiesRow row)
 {
     this.Rows.Remove(row);
 }
示例#4
0
 public void AddCitiesRow(CitiesRow row)
 {
     this.Rows.Add(row);
 }
示例#5
0
 public CitiesRowChangeEvent(CitiesRow row, global::System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }