Beispiel #1
0
 public IList CreateData() {
     Random rnd = new Random(RowCount);
     RecordCollection coll = new RecordCollection();
     for(int n = 0; n < RowCount; n++) {
         Record row = new Record();
         coll.Add(row);
     }
     return coll;
 }
Beispiel #2
0
        public IList CreateData()
        {
            Random           rnd  = new Random(RowCount);
            RecordCollection coll = new RecordCollection();

            for (int n = 0; n < RowCount; n++)
            {
                Record row = new Record();
                coll.Add(row);
            }
            return(coll);
        }
Beispiel #3
0
        //<label1>
        void SetValue(object data, int row, int column, object val)
        {
            RecordCollection rc = data as RecordCollection;

            rc.SetValue(row, column, val);
        }