Login
Nederlands
About
Consulting
Projects
Resume
Contact Me!
Any fool can write code that a computer can understand.
Good programmers
write code that
humans
can
understand
.
- 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.