Is there a way to create a Zip archive that contains multiple files, when the files are currently in memory? The files I want to save are really just text only and are stor
Use a StringReader to read from your string objects and expose them as Stream s.
That should make it easy to feed them to your zip-building code.