A generic C# entity collection to Csv (Rfc4180) record(s) converter/serializer
A generic C# entity collection to CSV converter/serializer.
RFC4180 compitable (https://tools.ietf.org/html/rfc4180) .
This project is created using Visual Studio 2017 and .NETFramework Version v4.6.1 is used.
“EntityToCsvSerializer.cs” is the main file that converter C# Entity to CSV.
It has only one public static generic method named “SerializeToDelimitedText
var CsvString = EntityToCsvSerializer.SerializeToDelimitedText(PassyourEntityCollection);
For detail, please check the “EntityToCsvSerializerTests.cs” file under “EntityToCsvTests” project.