CompuMaster.Data.XlsEpplus
3.0.2025.1230
.NET 6.0
This package targets .NET 6.0. The package is compatible with this framework or higher.
.NET Core 3.1
This package targets .NET Core 3.1. The package is compatible with this framework or higher.
.NET Standard 2.0
This package targets .NET Standard 2.0. The package is compatible with this framework or higher.
.NET Framework 4.5
This package targets .NET Framework 4.5. The package is compatible with this framework or higher.
dotnet add package CompuMaster.Data.XlsEpplus --version 3.0.2025.1230
NuGet\Install-Package CompuMaster.Data.XlsEpplus -Version 3.0.2025.1230
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="CompuMaster.Data.XlsEpplus" Version="3.0.2025.1230" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="CompuMaster.Data.XlsEpplus" Version="3.0.2025.1230" />
<PackageReference Include="CompuMaster.Data.XlsEpplus" />
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add CompuMaster.Data.XlsEpplus --version 3.0.2025.1230
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: CompuMaster.Data.XlsEpplus, 3.0.2025.1230"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package CompuMaster.Data.XlsEpplus@3.0.2025.1230
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=CompuMaster.Data.XlsEpplus&version=3.0.2025.1230
#tool nuget:?package=CompuMaster.Data.XlsEpplus&version=3.0.2025.1230
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
CompuMaster.Data.XlsEpplus
Read datatables from/write to Microsoft Excel files (XLSX) with 1 line of code
Sample for read data from XLSX files to a System.Data.DataTable
Dim t As System.Data.DataTable = CompuMaster.Data.XlsEpplus.ReadDataTableFromXlsFile(TempFile)
Dim ds As System.Data.DataSet = CompuMaster.Data.XlsEpplus.ReadDataSetFromXlsFile(TempFile, True)
Dim SheetNames As String() = CompuMaster.Data.XlsEpplus.ReadSheetNamesFromXlsFile(TempFile)
Dim t2 As System.Data.DataTable = CompuMaster.Data.XlsEpplus.ReadDataTableFromXlsFile(TempFile, SheetNames(2))
Sample for writing data to XLSX files
Sub Test()
Dim t as System.Data.DataTable = CreateTestData()
'Write test data
CompuMaster.Data.XlsEpplus.WriteDataTableToXlsFile(Nothing, TempFile, data, "test")
End Sub
Function CreateTestData() As System.Data.DataTable
Dim data As New DataTable("testtable")
data.Columns.Add(New DataColumn("some values", GetType(String)))
data.Columns.Add(New DataColumn("a second column", GetType(String)))
Dim row As DataRow
row = data.NewRow
row("some values") = "this is a Test!"
row("a second column") = "2 columns and 2 rows"
data.Rows.Add(row)
row = data.NewRow
row("some values") = "this is the last line"
row("a second column") = "this is the last cell" & System.Environment.NewLine & "2nd line" & System.Environment.NewLine & "3rd line" & System.Environment.NewLine & "4th line" & vbTab & "with a tab char"
data.Rows.Add(row)
Return data
End Function
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net5.0 was computed. net5.0-windows was computed. net6.0 is compatible. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 was computed. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
| .NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 is compatible. |
| .NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
| .NET Framework | net45 is compatible. net451 was computed. net452 was computed. net46 was computed. net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 is compatible. net481 was computed. |
| MonoAndroid | monoandroid was computed. |
| MonoMac | monomac was computed. |
| MonoTouch | monotouch was computed. |
| Tizen | tizen40 was computed. tizen60 was computed. |
| Xamarin.iOS | xamarinios was computed. |
| Xamarin.Mac | xamarinmac was computed. |
| Xamarin.TVOS | xamarintvos was computed. |
| Xamarin.WatchOS | xamarinwatchos was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 3.0.2025.1230 | 136 | 12/29/2025 |
| 3.0.2025.1229 | 108 | 12/29/2025 |
| 3.0.2024.1104 | 303 | 12/4/2024 |
| 3.0.2022.812 | 864 | 8/12/2022 |
| 3.0.2021.715 | 697 | 7/15/2021 |
| 3.0.2021.713 | 658 | 7/13/2021 |
| 2.2.2021.504 | 623 | 5/2/2021 |
| 2.2.2021.503 | 562 | 5/2/2021 |
| 2.2.2021.126 | 636 | 1/26/2021 |
| 2.2.2019.1224 | 830 | 12/23/2019 |
| 2.2.2019.1223 | 723 | 12/23/2019 |
| 2.2.2019.1105 | 816 | 11/5/2019 |
| 2.2.2019.721-beta | 630 | 7/22/2019 |
| 2.2.2016.725-beta | 1,250 | 9/28/2016 |
| 2.2.2016.120-unstable | 1,235 | 7/19/2016 |