//Конструктор public DBFField(DBFFieldDescriptor descr, DBFRecord pr) { _parent = pr; _descriptor = descr; _value = new byte[_descriptor.bFieldSize + _descriptor.bFractionalSize]; for (ushort x = 0; x < _value.Length; x++) { _value[x] = 0; } }
//Конструктор public DBFField( DBFFieldDescriptor descr, DBFRecord pr ) { _parent = pr; _descriptor = descr; _value = new byte[_descriptor.bFieldSize + _descriptor.bFractionalSize]; for( ushort x = 0; x < _value.Length; x++ ) _value[x] = 0; }