Esempio n. 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;
 }
Esempio n. 2
0
 internal void AddComponent(FieldComponent newComponent)
 {
     components.Add(newComponent);
 }