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

Minimum() public method

public Minimum ( long value ) : void
value long
return void
        public void Minimum(long value) {
            if (this.cnt == 0 || value < this.result)
                this.result = value;

            this.cnt = 1;
        }