This C# class giving a simplest way with performance serializer functionalities to manipulate CSV strings; several test cases were executed in order to treat the particularities of a sequence of CSV characters; in this publication, is considered stable, it is implemented in productive environments with large scale of data generated or consumed in CSV daily.
Specifications: This 'CsvSerializer' class enjoy best pratices of Design Patterns result in a powerful CSV serialization and deserialization functionality, giving to Developer other data sctructure options like DataTable object or a custom C# Plain Old CLR Object (Entity class) with capacity to define column name and order exihbition. Both methods 'Serialize' and 'Deserialize' contains on important argument named "csvSeparator" to gives flexible generation of CSV.
Bellow are examples of using the 'CsvSerializer':
1.1) Using a POCO (Plain Old CLR Objects) class, with native .NET DataMemberAtribute (attribute is not mandatory):
public class ExampleModel
{
[DataMember(Name = "My Property 1", Order = 4)]
public string MyProperty1 { get; set; }
[DataMember(Name = "My Property 2", Order = 1)]
public string MyProperty2 { get; set; }
[DataMember(Name = "Any Property", Order = 3)]
public string AnyProperty { get; set; }
[DataMember(Name = "Property comments change order", Order = 6)]
public string PropertyWithChangeOrder { get; set; }
[DataMember(Name = "Some Property", Order = 2)]
public string SomeProperty { get; set; }
[DataMember(Name = "Capacity Property", Order = 5)]
public string CapacityProperty { get; set; }
}
List<ExampleModel> list = new List<ExampleModel>();
list.Add(new ExampleModel()
{
AnyProperty = "any 1",
CapacityProperty = "20",
MyProperty1 = "my 1",
MyProperty2 = "my 2",
PropertyWithChangeOrder = "Comments to change and or texts...",
SomeProperty = "some 1"
});
list.Add(new ExampleModel()
{
AnyProperty = "any yna",
CapacityProperty = "45",
MyProperty1 = "11 my",
MyProperty2 = "22 my",
PropertyWithChangeOrder = "Another comment to change contents!",
SomeProperty = "2 some 1"
});
list.Add(new ExampleModel()
{
AnyProperty = @"\/any yna\/",
CapacityProperty = "57",
MyProperty1 = "1my1",
MyProperty2 = "2my2",
PropertyWithChangeOrder = "Texts with comments to rich all tests",
SomeProperty = "some3"
});
string csvSerialized = CsvSerializer<ExampleModel>.Serialize(';', list);
My Property 2;Some Property;Any Property;My Property 1;Capacity Property;Property comments change order;
my 2;some 1;any 1;my 1;20;Comments to change and or texts...;
22 my;2 some 1;any yna;11 my;45;Another comment to change contents!;
2my2;some3;\/any yna\/;1my1;57;Texts with comments to rich all tests;
1.5) Pear attention: if you want to save '.csv' file, remeber to use Encoding UTF8, according CSV specifications:
File.WriteAllText(@"\\path\to\save\file.csv", csvSerialized, Encoding.UTF8);
string csvToDeserialize = File.ReadAllText(@"\\path\to\read\file.csv");
DataTable dtDeserialized = CsvSerializer.Deserialize(';', csvToDeserialize);
ExampleModel[] arrayCollection = CsvSerializer<ExampleModel>.Deserialize(';', csvToDeserialize).ToArray();
List<ExampleModel> listCollection = CsvSerializer<ExampleModel>.Deserialize(';', csvToDeserialize).ToList();