Skip to content

Instantly share code, notes, and snippets.

@JoshClose
JoshClose / Example.cs
Created May 17, 2019 18:00
CsvHelper writing dictionary values
void Main()
{
var records = new List<Dictionary<string, string>>
{
new Dictionary<string, string> { { "Id", "1" }, { "Name", "one" } },
new Dictionary<string, string> { { "Id", "2" }, { "Name", "two" } }
};
using (var writer = new StringWriter())
using (var csv = new CsvWriter(writer))
{
@FullStackForger
FullStackForger / .gitignore
Last active April 6, 2024 13:19
.gitignore for Unity3d project
###
# Unity folders and files
###
[Aa]ssets/AssetStoreTools*
[Bb]uild/
[Ll]ibrary/
[Ll]ocal[Cc]ache/
[Oo]bj/
[Tt]emp/
[Uu]nityGenerated/