Beispiel #1
0
 internal FieldComponent(FieldComponent component)
 {
     this.fieldNum         = component.fieldNum;
     this.accumulate       = component.accumulate;
     this.bits             = component.bits;
     this.scale            = component.scale;
     this.offset           = component.offset;
     this.accumulatedValue = component.accumulatedValue;
     this.lastValue        = component.lastValue;
 }
Beispiel #2
0
 internal FieldComponent(FieldComponent component)
 {
     this.fieldNum = component.fieldNum;
      this.accumulate = component.accumulate;
      this.bits = component.bits;
      this.scale = component.scale;
      this.offset = component.offset;
      this.accumulatedValue = component.accumulatedValue;
      this.lastValue = component.lastValue;
 }
Beispiel #3
0
 internal void AddComponent(FieldComponent newComponent)
 {
     components.Add(newComponent);
 }
Beispiel #4
0
 internal void AddComponent(FieldComponent newComponent)
 {
     components.Add(newComponent);
 }