资 源 简 介
应用背景用c#封装excel的读写操作。
支持excel文件的打开、保存、关闭、读写。
使用方便,直接使用代码。
需要增加引用:using Excel = Microsoft.Office.Interop.Excel;
关键技术
用c#封装excel的读写操作。
支持excel文件的打开、保存、关闭、读写。
public class ExcelLib
{
#region Variables
private Excel.Application excelApplication = null;
private Excel.Workbooks excelWorkBooks = null;
private Excel.Workbook excelWorkBook = null;
private Excel.Worksheet excelWorkSheet = null;
private Excel.Range excelRange = null;//Excel Range Object,多种用途
private Excel.Range excelCopySourceRange =