Skip to content

Instantly share code, notes, and snippets.

@maloo
maloo / TupleDeconstruct.cs
Created March 3, 2022 20:39
Example source generator output to deconstruct tuples from expressions
using System.Data;
var dict = new Dictionary<string, object>() {
{ "name", "Marcus" },
{ "age", 44 },
};
var data = new DataTable();
data.Columns.Add("name", typeof(string));
@maloo
maloo / MemoryMappedFileMemory.cs
Created April 24, 2020 11:37
MemoryMappedFile to Span sample
using System;
using System.Buffers;
using System.IO.MemoryMappedFiles;
namespace VallmoVcdVisualizer.Services
{
unsafe class MemoryMappedFileMemory : MemoryManager<byte>
{
private readonly MemoryMappedFile mmf;
private readonly MemoryMappedViewAccessor ma;