C# – Collections

  • Post author:
  • Post category:C#
  • Post comments:2 Comments

C# Collections classes are specialized classes for data storage and retrieval. These classes provide support for stacks, queues, lists, and hash tables. Most collection classes implement the same interfaces. Collection…

Continue ReadingC# – Collections

C# – Events

  • Post author:
  • Post category:C#
  • Post comments:1 Comment

C# Events are user actions such as keypress, clicks, mouse movements, etc., or some occurrence such as system-generated notifications. Applications need to respond to events when they occur. For example, interrupts.…

Continue ReadingC# – Events