Tolyamba

6

Jan 24th, 2017
178
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.97 KB | None | 0 0
  1. public class MyJournal
  2.     {
  3.         public List<MyJournalEntry> journal;
  4.  
  5.         public MyJournal()
  6.         {
  7.             journal = new List<MyJournalEntry>();
  8.         }
  9.  
  10.         public void CollectionCountChanged(object sourse, CollectionHandlerEventArgs e)
  11.         {
  12.             JournalEntry je = new JournalEntry(e.NameCollection, e.ChangeCollection, e.Pair.ToString());
  13.             journal.Add(je);
  14.         }        
  15.     }
  16.  
  17.  
  18.  
  19. public class MyJournalEntry
  20.     {
  21.         public string NameCollection { get; set; }
  22.         public string ChangeCollection { get; set; }
  23.         public Pair Pair { get; set; }
  24.  
  25.         public MyJournalEntry(string collectionName, string changes, Pair pair)
  26.         {
  27.             NameCollection = collectionName;
  28.             ChangeCollection = changes;
  29.             Pair = pair;
  30.         }
  31.  
  32.         public override string ToString()
  33.         {
  34.             return NameCollection + ", " + ChangeCollection + ", " + Pair;
  35.         }
  36.     }
Add Comment
Please, Sign In to add comment