what is the best way to save a list of strings to the settings file? i've seen some solutions of editing the xml setting file type to string[], but i can get that to work in the editor.
i also don't know how many strings are going to get added at runtime and it's going to be a lot so i don't want to define a bunch of named strings here. but i still want to save them and have access the next time the application is opened.
i see there is a System.Collections.Specialized.StringCollection
in the settings types, is this what i want? if there's a way to save an array to the XML that would work too.