Aqueduct.Monitoring.Readings.MinReadingData.Aggregate C# (CSharp) Method

Aggregate() public method

public Aggregate ( ReadingData other ) : void
other ReadingData
return void
		public override void Aggregate(ReadingData other)
		{
			Value = Math.Min(Value, (double)other.GetValue());
		}