コード例 #1
0
            public VoiceNoteRow AddVoiceNoteRow(System.Guid Key, byte[] Data, System.DateTime Date)
            {
                VoiceNoteRow rowVoiceNoteRow = ((VoiceNoteRow)(this.NewRow()));

                rowVoiceNoteRow.ItemArray = new object[] {
                    Key,
                    Data,
                    Date
                };
                this.Rows.Add(rowVoiceNoteRow);
                return(rowVoiceNoteRow);
            }
コード例 #2
0
 public VoiceNoteRowChangeEvent(VoiceNoteRow row, System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
コード例 #3
0
 public void RemoveVoiceNoteRow(VoiceNoteRow row)
 {
     this.Rows.Remove(row);
 }
コード例 #4
0
 public void AddVoiceNoteRow(VoiceNoteRow row)
 {
     this.Rows.Add(row);
 }