Info: The string[] required about 480,000 bytes. The byte[][] (a jagged array of byte arrays) required 320,000 bytes.
And: There was no data loss in these strings because the strings were ASCII-only.
GC.CollectJagged ArraysConvert String, Byte ArrayTip: You can convert the byte arrays back into strings by calling ASCIIEncoding.ASCII.GetString.
Warning: Please note this will have a performance and memory cost to create new strings.
However: There is an additional cost when you need to convert back into strings.