Exemplo n.º 1
0
        private void createShow2()
        {
            // The created ATM will run with datarace
            ATM_Form a = new ATM_Form(ac, true);

            a.ShowDialog();
        }
Exemplo n.º 2
0
        private void createShow()
        {
            // The created ATM will run preventing datarace
            ATM_Form a = new ATM_Form(ac, false);

            a.ShowDialog();
        }