System.Xml.Xsl.Runtime.Int32Aggregator.Maximum C# (CSharp) Method

Maximum() public method

public Maximum ( int value ) : void
value int
return void
        public void Maximum(int value) {
            if (this.cnt == 0 || value > this.result)
                this.result = value;

            this.cnt = 1;
        }