Reading Excel files from C#
        Posted  
        
            by dbkk
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by dbkk
        
        
        
        Published on 2008-08-19T07:23:46Z
        Indexed on 
            2010/03/09
            0:21 UTC
        
        
        Read the original article
        Hit count: 320
        
Is there a free or open source library to read Excel files (.xls) directly from a C# program?
It does not need to be too fancy, just to select a worksheet and read the data as strings. So far, I've been using Export to Unicode text function of Excel, and parsing the resulting (tab-delimited) file, but I'd like to eliminate the manual step.
© Stack Overflow or respective owner