Ejemplo n.º 1
0
 public MainWindow(string title)
     : base(Gtk.WindowType.Toplevel)
 {
     Build ();
     MyReader mr = new MyReader ();
     List<Account> acc_list = mr.ImportAccount("../../src/Assignment4.csv");
     Dictionary<string, List<Account>> dict = new Dictionary<string, List<Account>>();
     foreach (Account acc in acc_list)
     {
         acc.Report ();
         try
         {
             dict.Add(acc.ID, new List<Account>());
         }
         catch (ArgumentException)
         {
             dict[acc.ID].Add(acc);
         }
     }
 }
Ejemplo n.º 2
0
        public MainWindow(string title) : base(Gtk.WindowType.Toplevel)
        {
            Build();
            MyReader       mr       = new MyReader();
            List <Account> acc_list = mr.ImportAccount("../../src/Assignment4.csv");
            Dictionary <string, List <Account> > dict = new Dictionary <string, List <Account> >();

            foreach (Account acc in acc_list)
            {
                acc.Report();
                try
                {
                    dict.Add(acc.ID, new List <Account>());
                }
                catch (ArgumentException)
                {
                    dict[acc.ID].Add(acc);
                }
            }
        }