Forgive me I'm a new user. I can't find how to search the newsgroups, only the forums.
I'm trying Excel Interop to read Excel spreadsheets using C#.
I'm "simply" loading the entire contents of the spreadsheet into RAM for manipulation.
All cell contents are loaded as strings, into a string[][].
I realize I'm not making full use of this Interop like most of you are, but the choices seem limited for C#->Excel interaction.
Cycling through cell by cell is painfully slow!
What are my other options?
I also tried using OleDb which is incredibly fast, but it also seems to "assume" data types and reads in long number strings as scientific-format numbers!
Is there a way around this data-type assuming by OleDb?
OleDb really seems like the ideal application for reading my Excel sheets, and the fastest.
Thanks everyone!
Mark
I'm trying Excel Interop to read Excel spreadsheets using C#.
I'm "simply" loading the entire contents of the spreadsheet into RAM for manipulation.
All cell contents are loaded as strings, into a string[][].
I realize I'm not making full use of this Interop like most of you are, but the choices seem limited for C#->Excel interaction.
Cycling through cell by cell is painfully slow!
What are my other options?
I also tried using OleDb which is incredibly fast, but it also seems to "assume" data types and reads in long number strings as scientific-format numbers!
Is there a way around this data-type assuming by OleDb?
OleDb really seems like the ideal application for reading my Excel sheets, and the fastest.
Thanks everyone!
Mark