in my C# application i need to store huge amounts of constant strings in arrays, like one array for first names and one for last name and so on...
These strings never change so my question is how to store them ?
Make a static constant class with these arrays ?
Load them at runtime from somewhere?
Or any other solution...
PS: I don't really want external files so if i load them from somewhere they have to be included in the .exe
EDIT:// So i just make resource files with string[] arrays, alrigt :)