Beispiel #1
0
 private void AppendToHistory(SensorReadout readout)
 {
     if (_history == null)
     {
         _history = readout;
     }
     else
     {
         _history.Append(readout);
     }
 }
Beispiel #2
0
 public void Append(SensorReadout sensorReadout)
 {
     if (_next == null)
     {
         _next = sensorReadout;
     }
     else
     {
         _next.Append(sensorReadout);
     }
 }