FileConversionLibrary 1.0.0
See the version list below for details.
dotnet add package FileConversionLibrary --version 1.0.0
NuGet\Install-Package FileConversionLibrary -Version 1.0.0
<PackageReference Include="FileConversionLibrary" Version="1.0.0" />
paket add FileConversionLibrary --version 1.0.0
#r "nuget: FileConversionLibrary, 1.0.0"
// Install FileConversionLibrary as a Cake Addin #addin nuget:?package=FileConversionLibrary&version=1.0.0 // Install FileConversionLibrary as a Cake Tool #tool nuget:?package=FileConversionLibrary&version=1.0.0
File Conversion Library
This library provides functionality to convert CSV files to XML and vice versa.
Usage
CSV to XML Conversion
var converter = new CsvToXmlConverter();
converter.Convert("path/to/input.csv", "path/to/output.xml");
XML to CSV Conversion
var converter = new XmlToCsvConverter();
converter.Convert("path/to/input.xml", "path/to/output.csv");
Notes
The CsvToXmlConverter class reads a CSV file, parses it, and writes the content to an XML file. The first line of the CSV file is assumed to be the header. The XmlToCsvConverter class reads an XML file, parses it, and writes the content to a CSV file. The XML file is assumed to be in the format produced by the CsvToXmlConverter. Both classes handle errors such as file not found and invalid file format, and print an error message to the console.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net7.0 is compatible. 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. |
This package has 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.
First release of FileConversionLibrary.