如何阅读Excel并使用C#编写Excel?

时间:2017-01-25 09:34:57

标签: c# excel

我有一个Excel文件。其中包含类似关注的内容

Name      Subject       marks
A         Maths                   30  
B         Maths          20  
C         Maths                   60  
D         Maths          35        

这里的值不在正确的单元格中。我想格式化Excel。我想要的结果如下所述。

 Name     Subject       marks
A         Maths          30  
B         Maths          20  
C         Maths          60  
D         Maths          35  

我尝试的是:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Excel = Microsoft.Office.Interop.Excel;
namespace excel
{
    class Program
    {
        static void Main(string[] args)
        {

            Excel.Application xlApp = new Excel.Application();
            Excel.Workbook xlWorkbook = xlApp.Workbooks.Open(@"d:\dinesh\sample.xlsx");
            Excel.Worksheet xlWorksheet = xlWorkbook.Sheets[1]; // assume it is the first sheet 
            Excel.Range xlRange = xlWorksheet.UsedRange;
        }
    }
}

我不知道如何解决我的问题。请给我一些指导来解决我的问题。谢谢。

Unformated Excel content

0 个答案:

没有答案