I want to build a CSV file from separate strings but since the size of the string is big I’m trying to avoid from joining the strings into a single string before writing to the file. Meaning, creating a file and than adding another string into it.
can it be done?
I want to build a CSV file from separate strings but since the size
Share
Rather than using String go for
StringBuilderto build your string.than flush string in file.