Ejemplo n.º 1
0
 private BOFRecord(BOFRecordType type)
 {
     field_1_version  = VERSION;
     field_2_type     = (int)type;
     field_3_build    = BUILD;
     field_4_year     = BUILD_YEAR;
     field_5_history  = 0x01;
     field_6_rversion = VERSION;
 }
Ejemplo n.º 2
0
 private BOFRecord(BOFRecordType type)
 {
     field_1_version = VERSION;
     field_2_type = (int) type;
     field_3_build = BUILD;
     field_4_year = BUILD_YEAR;
     field_5_history = 0x01;
     field_6_rversion = VERSION;
 }
Ejemplo n.º 3
0
 public UnsupportedBOFType(BOFRecordType type)
     : base("BOF not of a supported type, found " + type)
 {
     ;
     this.type = type;
 }