Skip to content

Instantly share code, notes, and snippets.

@Petrusion
Petrusion / Parser.cs
Last active April 26, 2022 00:28
Quickly thrown together Interpolated String Handler based Parser
using System;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
namespace ParserTest;
public static class Parser
{
[InterpolatedStringHandler]
[StructLayout(LayoutKind.Auto)]