基本信息
源码名称:C#读取Excel源代码.zip
源码大小:0.52M
文件格式:.zip
开发语言:C#
更新时间:2023-05-04
   友情提示:(无需注册或充值,赞助后即可获取资源下载链接)

     嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300

本次赞助数额为: 2 元 
   源码介绍
C#读取Excel源代码.zip
本代码使用纯C#编写,不需要Office Excel Com组件的支持,它的功能包括: 读出在工作簿(workbook)中的所有Worksheet,读出所有WorkSheet中的单元,读取单元的内容,读取单元的格式


文件清单
└── C#读取Excel源代码
    ├── Backup
    │   ├── CodeLib
    │   │   ├── Encoder
    │   │   │   └── Bin2Hex.cs
    │   │   ├── FileIO.cs
    │   │   ├── FileSelector.cs
    │   │   ├── Pair.cs
    │   │   └── StreamHelper.cs
    │   ├── Office
    │   │   ├── CompoundDocumentFormat
    │   │   │   ├── CompoundDocument.cs
    │   │   │   ├── CompoundFileHeader.cs
    │   │   │   ├── DirectoryEntry.cs
    │   │   │   ├── Endianness.cs
    │   │   │   ├── EntryType.cs
    │   │   │   ├── FileHeader.cs
    │   │   │   ├── NodeColor.cs
    │   │   │   └── SID.cs
    │   │   ├── Excel
    │   │   │   ├── CellCollection.cs
    │   │   │   ├── Cell.cs
    │   │   │   ├── ColorPalette.cs
    │   │   │   ├── Enums
    │   │   │   │   ├── ErrorCode.cs
    │   │   │   │   ├── EscherRecordType.cs
    │   │   │   │   ├── PropertyIDs.cs
    │   │   │   │   ├── RecordType.cs
    │   │   │   │   ├── SheetType.cs
    │   │   │   │   ├── StreamType.cs
    │   │   │   │   └── SubRecordType.cs
    │   │   │   ├── EscherRecord.cs
    │   │   │   ├── EscherRecords
    │   │   │   │   ├── EscherRecord.cs
    │   │   │   │   ├── MsofbtAlignRule.cs
    │   │   │   │   ├── MsofbtAnchor.cs
    │   │   │   │   ├── MsofbtArcRule.cs
    │   │   │   │   ├── MsofbtBlipBitmapDIB.cs
    │   │   │   │   ├── MsofbtBlipBitmapJPEG.cs
    │   │   │   │   ├── MsofbtBlipBitmapPNG.cs
    │   │   │   │   ├── MsofbtBlipBitmapPS.cs
    │   │   │   │   ├── MsofbtBlip.cs
    │   │   │   │   ├── MsofbtBlipEnd.cs
    │   │   │   │   ├── MsofbtBlipStart.cs
    │   │   │   │   ├── MsofbtBSE.cs
    │   │   │   │   ├── MsofbtBstoreContainer.cs
    │   │   │   │   ├── MsofbtCalloutRule.cs
    │   │   │   │   ├── MsofbtChildAnchor.cs
    │   │   │   │   ├── MsofbtClientAnchor.cs
    │   │   │   │   ├── MsofbtClientData.cs
    │   │   │   │   ├── MsofbtClientRule.cs
    │   │   │   │   ├── MsofbtClientTextbox.cs
    │   │   │   │   ├── MsofbtCLSID.cs
    │   │   │   │   ├── MsofbtColorMRU.cs
    │   │   │   │   ├── MsofbtColorScheme.cs
    │   │   │   │   ├── MsofbtConnectorRule.cs
    │   │   │   │   ├── MsofbtContainer.cs
    │   │   │   │   ├── MsofbtDeletedPspl.cs
    │   │   │   │   ├── MsofbtDgContainer.cs
    │   │   │   │   ├── MsofbtDg.cs
    │   │   │   │   ├── MsofbtDggContainer.cs
    │   │   │   │   ├── MsofbtDgg.cs
    │   │   │   │   ├── MsofbtOleObject.cs
    │   │   │   │   ├── MsofbtOPT.cs
    │   │   │   │   ├── MsofbtRegroupItems.cs
    │   │   │   │   ├── MsofbtSelection.cs
    │   │   │   │   ├── MsofbtSolverContainer.cs
    │   │   │   │   ├── MsofbtSpContainer.cs
    │   │   │   │   ├── MsofbtSp.cs
    │   │   │   │   ├── MsofbtSpgrContainer.cs
    │   │   │   │   ├── MsofbtSpgr.cs
    │   │   │   │   ├── MsofbtSplitMenuColors.cs
    │   │   │   │   └── MsofbtTextbox.cs
    │   │   │   ├── Extended
    │   │   │   │   ├── BOOLERR.cs
    │   │   │   │   ├── FORMULA.cs
    │   │   │   │   ├── MSOCONTAINER.cs
    │   │   │   │   ├── MsofbtBSE.cs
    │   │   │   │   ├── MsofbtContainer.cs
    │   │   │   │   ├── MsofbtDggContainer.cs
    │   │   │   │   ├── MsofbtDgg.cs
    │   │   │   │   ├── MsofbtOPT.cs
    │   │   │   │   ├── MULRK.cs
    │   │   │   │   ├── OBJ.cs
    │   │   │   │   ├── PALETTE.cs
    │   │   │   │   ├── SST.cs
    │   │   │   │   └── XF.cs
    │   │   │   ├── MetaData
    │   │   │   │   ├── EscherRecordTypes.txt
    │   │   │   │   ├── Excel.xml
    │   │   │   │   └── Record Identifier.txt
    │   │   │   ├── Picture.cs
    │   │   │   ├── readme.txt
    │   │   │   ├── Record.cs
    │   │   │   ├── Records
    │   │   │   │   ├── ARRAY.cs
    │   │   │   │   ├── BACKUP.cs
    │   │   │   │   ├── BITMAP.cs
    │   │   │   │   ├── BLANK.cs
    │   │   │   │   ├── BOF.cs
    │   │   │   │   ├── BOOKBOOL.cs
    │   │   │   │   ├── BOOLERR.cs
    │   │   │   │   ├── BOTTOMMARGIN.cs
    │   │   │   │   ├── BOUNDSHEET.cs
    │   │   │   │   ├── CALCCOUNT.cs
    │   │   │   │   ├── CALCMODE.cs
    │   │   │   │   ├── CODEPAGE.cs
    │   │   │   │   ├── CONTINUE.cs
    │   │   │   │   ├── DATEMODE.cs
    │   │   │   │   ├── DIMENSIONS.cs
    │   │   │   │   ├── FORMULA.cs
    │   │   │   │   ├── LABELSST.cs
    │   │   │   │   ├── MSOCONTAINER.cs
    │   │   │   │   ├── MSODRAWING.cs
    │   │   │   │   ├── MSODRAWINGGROUP.cs
    │   │   │   │   ├── MSODRAWINGSELECTION.cs
    │   │   │   │   ├── MULBLANK.cs
    │   │   │   │   ├── MULRK.cs
    │   │   │   │   ├── NUMBER.cs
    │   │   │   │   ├── OBJ.cs
    │   │   │   │   ├── PALETTE.cs
    │   │   │   │   ├── Record.cs
    │   │   │   │   ├── RK.cs
    │   │   │   │   ├── ROW.cs
    │   │   │   │   ├── RSTRING.cs
    │   │   │   │   ├── SST.cs
    │   │   │   │   ├── STRING.cs
    │   │   │   │   └── XF.cs
    │   │   │   ├── ShapeProperty.cs
    │   │   │   ├── SubRecord.cs
    │   │   │   ├── SubRecords
    │   │   │   │   ├── CommonObjectData.cs
    │   │   │   │   ├── End.cs
    │   │   │   │   ├── GroupMarker.cs
    │   │   │   │   └── SubRecord.cs
    │   │   │   ├── Workbook.cs
    │   │   │   └── Worksheet.cs
    │   │   └── Tool
    │   │       ├── Form1.cs
    │   │       ├── Form1.Designer.cs
    │   │       ├── Form1.resx
    │   │       └── Program.cs
    │   ├── OfficeDoc.csproj
    │   └── OfficeDoc.sln
    ├── bin
    │   └── Debug
    │       ├── OfficeDoc.exe
    │       └── OfficeDoc.pdb
    ├── CodeLib
    │   ├── Encoder
    │   │   └── Bin2Hex.cs
    │   ├── FileIO.cs
    │   ├── FileSelector.cs
    │   ├── Pair.cs
    │   └── StreamHelper.cs
    ├── no.txt
    ├── obj
    │   └── Debug
    │       ├── DesignTimeResolveAssemblyReferencesInput.cache
    │       ├── OfficeDoc.csprojAssemblyReference.cache
    │       ├── OfficeDoc.csproj.FileListAbsolute.txt
    │       ├── OfficeDoc.csproj.GenerateResource.cache
    │       ├── OfficeDoc.exe
    │       ├── OfficeDoc.pdb
    │       ├── QiHe.Office.Tool.Form1.resources
    │       └── TempPE
    ├── Office
    │   ├── CompoundDocumentFormat
    │   │   ├── CompoundDocument.cs
    │   │   ├── CompoundFileHeader.cs
    │   │   ├── DirectoryEntry.cs
    │   │   ├── Endianness.cs
    │   │   ├── EntryType.cs
    │   │   ├── FileHeader.cs
    │   │   ├── NodeColor.cs
    │   │   └── SID.cs
    │   ├── Excel
    │   │   ├── CellCollection.cs
    │   │   ├── Cell.cs
    │   │   ├── ColorPalette.cs
    │   │   ├── Enums
    │   │   │   ├── ErrorCode.cs
    │   │   │   ├── EscherRecordType.cs
    │   │   │   ├── PropertyIDs.cs
    │   │   │   ├── RecordType.cs
    │   │   │   ├── SheetType.cs
    │   │   │   ├── StreamType.cs
    │   │   │   └── SubRecordType.cs
    │   │   ├── EscherRecord.cs
    │   │   ├── EscherRecords
    │   │   │   ├── EscherRecord.cs
    │   │   │   ├── MsofbtAlignRule.cs
    │   │   │   ├── MsofbtAnchor.cs
    │   │   │   ├── MsofbtArcRule.cs
    │   │   │   ├── MsofbtBlipBitmapDIB.cs
    │   │   │   ├── MsofbtBlipBitmapJPEG.cs
    │   │   │   ├── MsofbtBlipBitmapPNG.cs
    │   │   │   ├── MsofbtBlipBitmapPS.cs
    │   │   │   ├── MsofbtBlip.cs
    │   │   │   ├── MsofbtBlipEnd.cs
    │   │   │   ├── MsofbtBlipStart.cs
    │   │   │   ├── MsofbtBSE.cs
    │   │   │   ├── MsofbtBstoreContainer.cs
    │   │   │   ├── MsofbtCalloutRule.cs
    │   │   │   ├── MsofbtChildAnchor.cs
    │   │   │   ├── MsofbtClientAnchor.cs
    │   │   │   ├── MsofbtClientData.cs
    │   │   │   ├── MsofbtClientRule.cs
    │   │   │   ├── MsofbtClientTextbox.cs
    │   │   │   ├── MsofbtCLSID.cs
    │   │   │   ├── MsofbtColorMRU.cs
    │   │   │   ├── MsofbtColorScheme.cs
    │   │   │   ├── MsofbtConnectorRule.cs
    │   │   │   ├── MsofbtContainer.cs
    │   │   │   ├── MsofbtDeletedPspl.cs
    │   │   │   ├── MsofbtDgContainer.cs
    │   │   │   ├── MsofbtDg.cs
    │   │   │   ├── MsofbtDggContainer.cs
    │   │   │   ├── MsofbtDgg.cs
    │   │   │   ├── MsofbtOleObject.cs
    │   │   │   ├── MsofbtOPT.cs
    │   │   │   ├── MsofbtRegroupItems.cs
    │   │   │   ├── MsofbtSelection.cs
    │   │   │   ├── MsofbtSolverContainer.cs
    │   │   │   ├── MsofbtSpContainer.cs
    │   │   │   ├── MsofbtSp.cs
    │   │   │   ├── MsofbtSpgrContainer.cs
    │   │   │   ├── MsofbtSpgr.cs
    │   │   │   ├── MsofbtSplitMenuColors.cs
    │   │   │   └── MsofbtTextbox.cs
    │   │   ├── Extended
    │   │   │   ├── BOOLERR.cs
    │   │   │   ├── FORMULA.cs
    │   │   │   ├── MSOCONTAINER.cs
    │   │   │   ├── MsofbtBSE.cs
    │   │   │   ├── MsofbtContainer.cs
    │   │   │   ├── MsofbtDggContainer.cs
    │   │   │   ├── MsofbtDgg.cs
    │   │   │   ├── MsofbtOPT.cs
    │   │   │   ├── MULRK.cs
    │   │   │   ├── OBJ.cs
    │   │   │   ├── PALETTE.cs
    │   │   │   ├── SST.cs
    │   │   │   └── XF.cs
    │   │   ├── MetaData
    │   │   │   ├── EscherRecordTypes.txt
    │   │   │   ├── Excel.xml
    │   │   │   └── Record Identifier.txt
    │   │   ├── Picture.cs
    │   │   ├── readme.txt
    │   │   ├── Record.cs
    │   │   ├── Records
    │   │   │   ├── ARRAY.cs
    │   │   │   ├── BACKUP.cs
    │   │   │   ├── BITMAP.cs
    │   │   │   ├── BLANK.cs
    │   │   │   ├── BOF.cs
    │   │   │   ├── BOOKBOOL.cs
    │   │   │   ├── BOOLERR.cs
    │   │   │   ├── BOTTOMMARGIN.cs
    │   │   │   ├── BOUNDSHEET.cs
    │   │   │   ├── CALCCOUNT.cs
    │   │   │   ├── CALCMODE.cs
    │   │   │   ├── CODEPAGE.cs
    │   │   │   ├── CONTINUE.cs
    │   │   │   ├── DATEMODE.cs
    │   │   │   ├── DIMENSIONS.cs
    │   │   │   ├── FORMULA.cs
    │   │   │   ├── LABELSST.cs
    │   │   │   ├── MSOCONTAINER.cs
    │   │   │   ├── MSODRAWING.cs
    │   │   │   ├── MSODRAWINGGROUP.cs
    │   │   │   ├── MSODRAWINGSELECTION.cs
    │   │   │   ├── MULBLANK.cs
    │   │   │   ├── MULRK.cs
    │   │   │   ├── NUMBER.cs
    │   │   │   ├── OBJ.cs
    │   │   │   ├── PALETTE.cs
    │   │   │   ├── Record.cs
    │   │   │   ├── RK.cs
    │   │   │   ├── ROW.cs
    │   │   │   ├── RSTRING.cs
    │   │   │   ├── SST.cs
    │   │   │   ├── STRING.cs
    │   │   │   └── XF.cs
    │   │   ├── ShapeProperty.cs
    │   │   ├── SubRecord.cs
    │   │   ├── SubRecords
    │   │   │   ├── CommonObjectData.cs
    │   │   │   ├── End.cs
    │   │   │   ├── GroupMarker.cs
    │   │   │   └── SubRecord.cs
    │   │   ├── Workbook.cs
    │   │   └── Worksheet.cs
    │   └── Tool
    │       ├── Form1.cs
    │       ├── Form1.Designer.cs
    │       ├── Form1.resx
    │       └── Program.cs
    ├── OfficeDoc.csproj
    ├── OfficeDoc.sln
    └── UpgradeLog.htm

31 directories, 271 files