QiyiFLV2MP4_GUI.FractionUInt32.Reduce C# (CSharp) Method

Reduce() public method

public Reduce ( ) : void
return void
        public void Reduce()
        {
            uint gcd = GCD(N, D);
            N /= gcd;
            D /= gcd;
        }