I have reviewed possible answers here (for PHP, I think): http://www.lateralcode.com/store-array-database/ but I am unable to find a C#.net version of serialize/deserialize.
Would this be done the same as the way shown in my link, above, or is there a completely different approach I should be using, given the environment?
I just don't want to have a bunch of different columns for each of the 12 values in each of my 9 different arrays, so if there is another approach to achieve this (converting to byte[], etc.) I am more than willing to hear it.
If it helps any, the arrays will be simple string[] arrays.
var a = String.Join(",",arrays);
and store a in db? and fetch it back likevar arr= a.Split(",");
– Pearlene