写一个c#代码 创建一个读写excel文件的代码
时间: 2023-04-10 20:05:03 浏览: 163
可以使用 Microsoft.Office.Interop.Excel 库来读写 Excel 文件。以下是一个示例代码:
```csharp
using System;
using System.IO;
using Microsoft.Office.Interop.Excel;
namespace ExcelReadWrite
{
class Program
{
static void Main(string[] args)
{
// 创建 Excel 应用程序对象
Application excelApp = new Application();
// 打开 Excel 文件
Workbook workbook = excelApp.Workbooks.Open(@"C:\path\to\excel\file.xlsx");
// 获取第一个工作表
Worksheet worksheet = workbook.Worksheets[1];
// 读取单元格的值
Range range = worksheet.Cells[1, 1];
Console.WriteLine("Cell A1: " + range.Value);
// 写入单元格的值
range.Value = "Hello, world!";
// 保存文件
workbook.Save();
// 关闭 Excel 应用程序
excelApp.Quit();
}
}
}
```
注意:在运行代码之前,需要在项目中添加对 Microsoft.Office.Interop.Excel 的引用。
阅读全文