Skip to content

Instantly share code, notes, and snippets.

@caschw
caschw / CsvSerializer.cs
Last active February 1, 2023 20:06
CsvSerializer - Serialize any strongly typed, serializable object to and from CSV!
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.IO;
using System.Linq;
using System.Reflection;
using System.Runtime.Serialization;
using System.Text;
namespace Serializers