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
<PackageReference Include="Shadow.Quack.Csv" Version="1.4.1" />
paket add Shadow.Quack.Csv --version 1.4.1
#r "nuget: Shadow.Quack.Csv, 1.4.1"
// 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 | Versions 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. |
-
.NETFramework 4.5
- Shadow.Quack (>= 2.3.0)
-
.NETStandard 2.1
- Shadow.Quack (>= 2.3.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Update Dependencies, Improved Property and Null handeling