Aanmelden
English
Over
Consulting
Projecten
Curriculum
Contacteer Mij!
Elke idioot kan code schrijven die een computer kan begrijpen.
Goede ontwikkelaars
schrijven code die
mensen
kunnen
verstaan
.
- Martin Fowler
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
When possible, use a
List<string>
or
Dictionary<string, string>
instead.