Exemple #1
0
 public override void FromRawData(byte [] buff, int offs, int numRows)
 {
     for (int i = numRows; --i >= 0;)
     {
         Row row = new PropertyPtrRow(this);
         row.FromRawData(buff, offs);
         Add(row);
         offs += PropertyPtrRow.LogicalSize;
     }
 }
 public virtual void VisitPropertyPtrRow(PropertyPtrRow row)
 {
 }
		public virtual void VisitPropertyPtrRow (PropertyPtrRow row)
		{
		}