You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to CSVChat
I have some large CSV data that is coming from multiple
HttpWebResponses. Is there a simple way to merge the response streams
from the HttpWebResponse into a single CSV file?
Each response stream will have a header row with the field names and
all the columns will be the same.
Regards;
GlennW
shriop
unread,
Mar 19, 2012, 9:43:34 PM3/19/12
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to CSVChat
Why couldn't you just open two CsvReaders and one CsvWriter? You could
even read all from one and write it to the file before starting to
read from the second. What are you seeing as the issue?