string filepath = @"D:\wAngran's\文档\Desktop\tempS\亲情1+1_isProc.xlsx";
Microsoft.Office.Interop.Excel.Application ea = new ApplicationClass();
ea.Workbooks.Open(filepath, 3, true, 2, string.Empty, string.Empty, true, XlPlatform.xlWindows, ";", null, null, null, null, null, null);
Workbook wb = ea.Workbooks[1];
Worksheet ws = (Worksheet)wb.Sheets[2];
Microsoft.Office.Interop.Excel.Range re = ws.UsedRange;
int down = re.get_End(Microsoft.Office.Interop.Excel.XlDirection.xlDown).Row;
int right = re.get_End(Microsoft.Office.Interop.Excel.XlDirection.xlToRight).Co