예제 #1
0
 private void InitializeMembers()
 {
     this.id = 0;
     this.name = null;
     this.dataType = null;
     this.nullValue = null;
     this.unit = null;
     this.scale = null;
     this.zero = null;
     this.format = null;
     this.dimensions = null;
 }
예제 #2
0
 public FitsDataType(FitsDataType old)
 {
     CopyMembers(old);
 }
예제 #3
0
 private void CopyMembers(FitsTableColumn old)
 {
     this.id = old.id;
     this.name = old.name;
     this.dataType = new FitsDataType(old.dataType);
     this.nullValue = old.nullValue;
     this.unit = old.unit;
     this.scale = old.scale;
     this.zero = old.zero;
     this.format = old.format;
     this.dimensions = old.dimensions;
 }
예제 #4
0
 private void CopyMembers(FitsDataType old)
 {
     this.name = old.name;
     this.type = old.type;
     this.repeat = old.repeat;
     this.byteSize = old.byteSize;
 }