public BotRow AddBotRow(string Name, string FunName, string Class, string Weapon, string Team) { BotRow rowBotRow = ((BotRow)(this.NewRow())); rowBotRow.ItemArray = new object[] { Name, FunName, Class, Weapon, Team }; this.Rows.Add(rowBotRow); return(rowBotRow); }
public BotRowChangeEvent(BotRow row, System.Data.DataRowAction action) { this.eventRow = row; this.eventAction = action; }
public void RemoveBotRow(BotRow row) { this.Rows.Remove(row); }
public void AddBotRow(BotRow row) { this.Rows.Add(row); }
public BotRowChangeEvent(BotRow row, DataRowAction action) { this.eventRow = row; this.eventAction = action; }