Skip to content

Instantly share code, notes, and snippets.

View tangdf's full-sized avatar

tangdf tangdf

  • china 武汉
View GitHub Profile
@kflu
kflu / ExpressionTreeLambdaToAssembly.cs
Last active November 28, 2018 14:49
Dump expression tree lambda into assembly for easy IL inspection using ildasm
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Reflection;
using System.Linq.Expressions;
using System.Reflection.Emit;
using System.IO;