Skip to content

Instantly share code, notes, and snippets.

using System;
using System.Linq;
using SteamKit2.GC.CSGO.Internal;
using SteamKit2;
using SteamKit2.Internal;
using SteamKit2.GC;
using System.Threading;
using System.Collections.Concurrent;
using System.Text.RegularExpressions;
@ChadSki
ChadSki / gist:7992383
Last active August 16, 2023 15:45
Dynamically define C# value types (structs) at runtime with a dynamic assembly
using System;
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
using System.Reflection.Emit;
using System.Runtime.InteropServices;
using System.Text;
namespace DevConsole
{