Aspose.Cells.Examples.CSharp.Articles.WorkingWithCalculationEngine.DecreaseCalculationTime.Run C# (CSharp) Method

Run() public static method

public static Run ( ) : void
return void
        public static void Run()
        {
            // ExStart:1
            // Test calculation time after setting recursive true
            TestCalcTimeRecursive(true);

            // Test calculation time after setting recursive false
            TestCalcTimeRecursive(false);
            // ExEnd:1           
            
        }
        // ExStart:TestCalcTimeRecursive
DecreaseCalculationTime