BrowardHealth.NPOIHelper 1.0.1

dotnet add package BrowardHealth.NPOIHelper --version 1.0.1
NuGet\Install-Package BrowardHealth.NPOIHelper -Version 1.0.1
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="BrowardHealth.NPOIHelper" Version="1.0.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add BrowardHealth.NPOIHelper --version 1.0.1
#r "nuget: BrowardHealth.NPOIHelper, 1.0.1"
#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.
// Install BrowardHealth.NPOIHelper as a Cake Addin
#addin nuget:?package=BrowardHealth.NPOIHelper&version=1.0.1

// Install BrowardHealth.NPOIHelper as a Cake Tool
#tool nuget:?package=BrowardHealth.NPOIHelper&version=1.0.1
    static async Task Main(string[] args)
    {
        string execDir = Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location);
        string inputFileName = "Test.xls"; // or xlsx
        string inputFilePath = Path.Combine(execDir, inputFileName);

        Console.WriteLine($"{inputFilePath} => DataTable...");
        DataTable dataTable = inputFilePath.NPOIReadFromExcel();

        string outputFileName = "TestOut.xlsx";

        string outputFilePath = Path.Combine(execDir, outputFileName);
        Console.WriteLine($"DataTable => {outputFilePath}...");

        dataTable.NPOIWriteExcelFile(outputFilePath);


        string outputFileName1 = "TestOut1.xls";

        string outputFilePath1 = Path.Combine(execDir, outputFileName1);
        Console.WriteLine($"Dynamic list => {outputFilePath1}...");

        dataTable.NPOIToList<dynamic>().NPOIWriteExcelFile(outputFilePath1);


        Console.WriteLine("Enter any key to exit...");

        Console.ReadKey();
    }
Product Compatible and additional computed target framework versions.
.NET Framework net48 is compatible.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • .NETFramework 4.8

    • No dependencies.

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
1.0.1 146 8/22/2023
1.0.0 121 8/21/2023

Summary of changes made in this release of the package.