Last active
August 29, 2015 14:10
-
-
Save jitbit/e6086cbcd03e97c14665 to your computer and use it in GitHub Desktop.
Excel fix for 32676max length, UTF8 preamble fix, "\r" new row workaround
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
///IMPORTANT!!! | |
/// THIS REPOR HAS BEEN MOVED TO https://github.com/jitbit/CsvExport (a "normal" repo) for better forking etc |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks for the great exporter. In my app I had some problem with threading/exceptions that caused some rows not to populate fully, and then eventually on
ExportToFile()
gave me aKeyNotFoundException
. I replaced all text forDictionary<string, object>
withHashtable
and that compiled and fixed the problem. So with that, instead of exception, it just fills in with an empty string.