System.Xml.Xsl.Runtime.Int32Aggregator.Maximum C# (CSharp) 메소드

Maximum() 공개 메소드

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

            this.cnt = 1;
        }