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

Aggregate() public method

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