PdfRpt.Aggregates.Numbers.Average.groupAvg C# (CSharp) Method

groupAvg() private method

private groupAvg ( double cellValue ) : void
cellValue double
return void
        private void groupAvg(double cellValue)
        {
            _groupSum += cellValue;
            _groupAvg = _groupSum / _groupRowNumber;
        }