R
Rick Navaro
I have a large number of hard coded strings I want to return from a dll.
I'm under the impression the fastest way would be a string array of the type
string[] myarray = {"1","2","3"...}. (I'm under the impression this would
be much faster then adding each string to the array one at a time.) When I
do this, the compiler throws an error saying it has a max line size of 2046.
Is there a way around this or is there another fast/faster way to return the
list of strings.
Thanks,
Rick
I'm under the impression the fastest way would be a string array of the type
string[] myarray = {"1","2","3"...}. (I'm under the impression this would
be much faster then adding each string to the array one at a time.) When I
do this, the compiler throws an error saying it has a max line size of 2046.
Is there a way around this or is there another fast/faster way to return the
list of strings.
Thanks,
Rick