Search Wiki:
Project Description
LINQ to Excel

Overview
Excel.Linq project is an open source project. This project is a project for practice for me to understand the Linq.

Example

The following example finds Worksheets by Worksheet's name.
using(XlsWorkbook book = new XlsWorkbook("TestData\\100.xls")) {
 
    var sheets = from s in book.Worksheets
                 where s.Name == "100"
                 select s;
 
    foreach(var sheet in sheets) Console.WriteLine(sheet.Name);
}

Last edited Feb 18 at 1:50 AM  by coma2n, version 7
Comments
No comments yet.

Updating...