![]() |
VOOZH | about |
dotnet add package DataExport --version 1.0.0
NuGet\Install-Package DataExport -Version 1.0.0
<PackageReference Include="DataExport" Version="1.0.0" />
<PackageVersion Include="DataExport" Version="1.0.0" />Directory.Packages.props
<PackageReference Include="DataExport" />Project file
paket add DataExport --version 1.0.0
#r "nuget: DataExport, 1.0.0"
#:package DataExport@1.0.0
#addin nuget:?package=DataExport&version=1.0.0Install as a Cake Addin
#tool nuget:?package=DataExport&version=1.0.0Install as a Cake Tool
DataExportPackage is a .NET library that facilitates exporting data to various file formats such as JSON, Word, XML, Excel, CSV, and PDF.
You can install DataExportPackage via NuGet Package Manager:
Install-Package DataExportPackage
To use DataExportPackage, follow these steps:
Create an instance of the DataExporter class by providing a list of dictionaries containing the data you want to export.
Call the appropriate method on the DataExporter object to export the data to the desired file format.
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"));
}
}
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.
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.
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. |
This package is not used by any NuGet packages.
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 1.0.0 | 453 | 2/26/2024 |