I'm attempting to add a constant list of values to a TStringList.
My first thought was to use the DelimitedText attribute, but it's broken in 7 (space is always a delimiter), plus, it overwrites whatever is already in the TStringList.
I looked at the AddStrings, but I'd like to avoid instantiating another object if I can help it.
I could just iterate over a constant array of string, but it seems like there should be an easier way.