Forex_Strategy_Builder.Actions.ShowProfitCalculator C# (CSharp) Method

ShowProfitCalculator() private method

Starts the Profit Calculator.
private ShowProfitCalculator ( ) : void
return void
        void ShowProfitCalculator()
        {
            Profit_Calculator prCalc = new Profit_Calculator();
            prCalc.Show();

            return;
        }
Actions