VOOZH about

URL: https://www.nuget.org/packages/DataExport/

⇱ NuGet Gallery | DataExport 1.0.0




👁 Image
DataExport 1.0.0

dotnet add package DataExport --version 1.0.0
 
 
NuGet\Install-Package DataExport -Version 1.0.0
 
 
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="DataExport" Version="1.0.0" />
 
 
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="DataExport" Version="1.0.0" />
 
Directory.Packages.props
<PackageReference Include="DataExport" />
 
Project file
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 DataExport --version 1.0.0
 
 
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: DataExport, 1.0.0"
 
 
#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 DataExport@1.0.0
 
 
#: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=DataExport&version=1.0.0
 
Install as a Cake Addin
#tool nuget:?package=DataExport&version=1.0.0
 
Install as a Cake Tool
The NuGet Team does not provide support for this client. Please contact its maintainers for support.

DataExportPackage

DataExportPackage is a .NET library that facilitates exporting data to various file formats such as JSON, Word, XML, Excel, CSV, and PDF.

Installation

You can install DataExportPackage via NuGet Package Manager:

Install-Package DataExportPackage

Usage

To use DataExportPackage, follow these steps:

  1. Create an instance of the DataExporter class by providing a list of dictionaries containing the data you want to export.

  2. Call the appropriate method on the DataExporter object to export the data to the desired file format.

Example

using System;
using System.Collections.Generic;
using System.IO;
using DataExportPackage;

class Program
{
 static void Main(string[] args)
 {
 // Sample data
 var data = new List<Dictionary<string, object>>()
 {
 new Dictionary<string, object> { {"name", "John"}, {"age", 30}, {"city", "New York"} },
 new Dictionary<string, object> { {"name", "Alice"}, {"age", 25}, {"city", "Los Angeles"} },
 new Dictionary<string, object> { {"name", "Bob"}, {"age", 35}, {"city", "Chicago"} }
 };

 // Specify the export directory
 string exportDirectory = @"C:\Users\YourUsername\Documents\Export";

 // Create the export directory if it does not exist
 Directory.CreateDirectory(exportDirectory);

 // Create a DataExporter instance
 var exporter = new DataExporter(data);

 // Export data to JSON
 exporter.ToJson(Path.Combine(exportDirectory, "data.json"));

 // Export data to Word
 exporter.ToWord(Path.Combine(exportDirectory, "data.docx"));

 // Export data to XML
 exporter.ToXml(Path.Combine(exportDirectory, "data.xml"));

 // Export data to Excel
 exporter.ToExcel(Path.Combine(exportDirectory, "data.xlsx"));
 }
}

Addressing File Paths

When specifying the file path for export, make sure to provide the full path to the desired location on your file system. In the example above, replace "C:\Users\YourUsername\Documents\Export" with the desired path where you want the exported files to be saved.

Contributing

Contributions to DataExportPackage are welcome! If you find any bugs, have feature requests, or want to contribute code, please open an issue or submit a pull request.

License

This project is licensed under the MIT License - see the file for details.

Product Versions Compatible and additional computed target framework versions.
.NET net8.0 net8.0 is compatible.  net8.0-android net8.0-android was computed.  net8.0-browser net8.0-browser was computed.  net8.0-ios net8.0-ios was computed.  net8.0-maccatalyst net8.0-maccatalyst was computed.  net8.0-macos net8.0-macos was computed.  net8.0-tvos net8.0-tvos was computed.  net8.0-windows net8.0-windows was computed.  net9.0 net9.0 was computed.  net9.0-android net9.0-android was computed.  net9.0-browser net9.0-browser was computed.  net9.0-ios net9.0-ios was computed.  net9.0-maccatalyst net9.0-maccatalyst was computed.  net9.0-macos net9.0-macos was computed.  net9.0-tvos net9.0-tvos was computed.  net9.0-windows net9.0-windows was computed.  net10.0 net10.0 was computed.  net10.0-android net10.0-android was computed.  net10.0-browser net10.0-browser was computed.  net10.0-ios net10.0-ios was computed.  net10.0-maccatalyst net10.0-maccatalyst was computed.  net10.0-macos net10.0-macos was computed.  net10.0-tvos net10.0-tvos was computed.  net10.0-windows net10.0-windows 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
1.0.0 453 2/26/2024