【例子介绍】C#合并excel操作
C#实现将多个excel表合并成一个excel表
【相关图片】
【源码结构】
文件清单
└── WindowsFormsApplication2
├── ttA.xlsx
├── ttB.xlsx
├── tttt.xls
├── tt.xls
├── WindowsFormsApplication2
│ ├── bin
│ │ └── Debug
│ │ ├── Microsoft.Office.Interop.Excel.dll
│ │ ├── Microsoft.Vbe.Interop.dll
│ │ ├── office.dll
│ │ ├── WindowsFormsApplication2.exe
│ │ ├── WindowsFormsApplication2.pdb
│ │ └── WindowsFormsApplication2.vshost.exe
│ ├── Form1.cs
│ ├── Form1.Designer.cs
│ ├── Form1.resx
│ ├── obj
│ │ └── Debug
│ │ ├── ResolveAssemblyReference.cache
│ │ ├── TempPE
│ │ ├── WindowsFormsApplication2.csproj.FileListAbsolute.txt
│ │ ├── WindowsFormsApplication2.csproj.GenerateResource.Cache
│ │ ├── WindowsFormsApplication2.exe
│ │ ├── WindowsFormsApplication2.Form1.resources
│ │ └── WindowsFormsApplication2.Properties.Resources.resources
│ ├── Program.cs
│ ├── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ └── WindowsFormsApplication2.csproj
├── WindowsFormsApplication2.sln
└── WindowsFormsApplication2.suo
8 directories, 28 files
评论