Пример #1
0
 static void Main()
 {      
        ArrayList name = new ArrayList();
        ArrayList account = new ArrayList();
        ArrayList balance = new ArrayList();
        ArrayList text = new ArrayList(); 
        
     
     
     Application.EnableVisualStyles();
     Application.SetCompatibleTextRenderingDefault(false);
     //Call to the bank account constructor
     BankAccountClass bankAccount = new BankAccountClass(name, account, balance,text);
     Application.Run(new Intro());
                 
 }
Пример #2
0
        static void Main()
        {
            ArrayList name    = new ArrayList();
            ArrayList account = new ArrayList();
            ArrayList balance = new ArrayList();
            ArrayList text    = new ArrayList();



            Application.EnableVisualStyles();
            Application.SetCompatibleTextRenderingDefault(false);
            //Call to the bank account constructor
            BankAccountClass bankAccount = new BankAccountClass(name, account, balance, text);

            Application.Run(new Intro());
        }