예제 #1
0
파일: Program.cs 프로젝트: ddema12/OOP
        static void DoPrint(Bank bank)
        {
            Account account = FindAccount(bank);

            if (account == null)
            {
                return;                  //stop continuation of procedure
            }
            account.PrintContents();
        }