FakeCsvSerializer 1.0.1

There is a newer version of this package available.
See the version list below for details.
dotnet add package FakeCsvSerializer --version 1.0.1
                    
NuGet\Install-Package FakeCsvSerializer -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="FakeCsvSerializer" Version="1.0.1" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="FakeCsvSerializer" Version="1.0.1" />
                    
Directory.Packages.props
<PackageReference Include="FakeCsvSerializer" />
                    
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 FakeCsvSerializer --version 1.0.1
                    
#r "nuget: FakeCsvSerializer, 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.
#:package FakeCsvSerializer@1.0.1
                    
#: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=FakeCsvSerializer&version=1.0.1
                    
Install as a Cake Addin
#tool nuget:?package=FakeCsvSerializer&version=1.0.1
                    
Install as a Cake Tool

FakeCsvSerializer

Convert the object to an csv-like file.

Getting Started

Supporting platform is .NET 6.

PM> Install-Package FakeCsvSerializer

Usage

You can use CsvSerializer.ToFile.

CsvSerializer.ToFile(Users, "test.csv", CsvSerializerOptions.Default);

Examples

If you pass an object, it will be converted to an Excel file.

CsvSerializer.ToFile(new string[] { "test", "test2" }, @"c:\test\test.csv", CsvSerializerOptions.Default);

test.csv:

"test"
"test2"

Passing a class expands the property into a column.

public class Portal
{
    public string Name { get; set; }
    public string Owner { get; set; }
    public int Level { get; set; }
}

var potals = new Portal[] {
    new Portal { Name = "Portal1", Owner = "panda728", Level = 8 },
    new Portal { Name = "Portal2", Owner = "panda728", Level = 1 },
    new Portal { Name = "Portal3", Owner = "panda728", Level = 2 },
};

CsvSerializer.ToFile(potals, @"c:\test\potals.csv", CsvSerializerOptions.Default);

potals.csv:

"Portal1","panda728","8"
"Portal2","panda728","1"
"Portal3","panda728","2"

Options can be set to display a title line and automatically adjust column widths.

var newConfig = CsvSerializerOptions.Default with
{
    CultureInfo = CultureInfo.InvariantCulture,
    Encoding = Encoding.UTF8,
    HasHeaderRecord = true,
    HeaderTitles = new string[] { "Name", "Owner", "Level" },
    Quote='"',
    Delimiter=',',
    NewLine=Environment.NewLine,
};
CsvSerializer.ToFile(potals, @"c:\test\potalsOp.csv", newConfig);

potalsOp.csv:

"Name","Owner","Level"
"Portal1","panda728","8"
"Portal2","panda728","1"
"Portal3","panda728","2"

Note

For the method of retrieving values from IEnumerable<T>, Cysharp's WebSerializer method is used.

https://github.com/Cysharp/WebSerializer

Excel(.xlsx) output version https://github.com/panda728/FakeExcelSerializer

License

This library is licensed under the MIT License.

Product Compatible and additional computed target framework versions.
.NET 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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • net6.0

    • 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.3.3 505 10/25/2022
1.3.2 475 8/31/2022
1.3.0 438 8/30/2022
1.2.1 442 8/28/2022
1.2.0 430 8/28/2022
1.0.3 440 8/23/2022
1.0.2 431 8/22/2022
1.0.1 446 8/21/2022
1.0.0 430 8/20/2022
0.1.1 449 8/19/2022
0.1.0 420 8/19/2022