Shadow.Quack.Csv 1.4.1

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

// Install Shadow.Quack.Csv as a Cake Tool
#tool nuget:?package=Shadow.Quack.Csv&version=1.4.1

Shadow Quack CSV

This package allows the easy population of values directly from a CSV string into a dynamically implemented immutable IEnumerable<T> where T is a dynamically implemented immutable interface with the help of the base Shadow Quack package.

This means that there is almost no effort in importing from a CSV file or string to an IEnumerable<T> with no need for concrete implementations or additional code.

public interface ITestCsv
{
    string AccountRef { get; }
    string CompanyName { get; }
    IEnumerable<string> ProductTypes { get; }
    int MinUnits { get; }
    int MaxUnits { get; }
    DateTime StartDate { get; }
    object LocalTaxRate { get; }
    int FixedCommission { get; }
    decimal Discount { get; }
    bool Boolean { get; }
}

This works on the assumption that the first row in the CSV file containing headings that match the interface properties

    CsvProxy csvContent =
@"AccountRef,CompanyName,MinUnits,MaxUnits,Boolean,ProductTypes,StartDate,LocalTaxRate,Discount,FixedCommission
XVVT-1987UT565,Narcolepsy Pumpkin,0,60,TRUE,""Data,Telephone"",17/12/2000,,3.9%,120
xxxx-1987UT565,Narcolepsy Pumpkin,0,60,TRUE,""Data,Telephone"",17/12/2001,,3.9%,120";

    var result = Duck.Implement<IEnumerable<ITestCsv>>(csvContent);

Useful for mock data required for unit tests, and importing tabular data from CSV files.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  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. 
.NET Core netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.1 is compatible. 
.NET Framework net45 is compatible.  net451 was computed.  net452 was computed.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos 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.4.1 941 4/5/2022
1.4.0 428 2/10/2022
1.3.5 437 1/30/2022
1.3.4 406 1/20/2022
1.3.3 271 12/5/2021
1.3.2 430 9/11/2021
1.3.1 367 9/10/2021
1.3.0 346 6/18/2021
1.2.3 366 5/27/2021
1.2.2 301 4/23/2021
1.2.0 359 4/17/2021
1.1.0 276 4/14/2021
1.0.0 304 3/29/2021

Update Dependencies, Improved Property and Null handeling