Specialized String classes

Overview

  • StringCollection
    • Acts as a strongly typed ArrayList of strings. Equivalent to List<string> with generics.
  • StringDictionary
    • Acts as a strongly typed Hashtable of strings. Equivalent to Dictionary<string> with generics.

Good practice