System.Xml.Xsl.Runtime.Int64Aggregator.Average C# (CSharp) Method

Average() public method

public Average ( long value ) : void
value long
return void
        public void Average(long value) {
            if (this.cnt == 0)
                this.result = value;
            else
                this.result += value;

            this.cnt++;
        }