Store string list
ASP.NET
4
Posts
4
Posters
0
Views
1
Watching
-
what is the best way to store string list (80 items)? it looks like this: 1 One 2 Two 3 Three ....
-
what is the best way to store string list (80 items)? it looks like this: 1 One 2 Two 3 Three ....
To me the best way to store a list of strings a
List<String>
. Simples really! Cheers!"I had the right to remain silent, but I didn't have the ability!"
Ron White, Comedian
-
what is the best way to store string list (80 items)? it looks like this: 1 One 2 Two 3 Three ....
use String builder . it's best one store to string and then compare to string is very fast.. Another one - List slist = new List();