Skip to content

Instantly share code, notes, and snippets.

@sgaliamov
Last active May 2, 2021 15:26
Show Gist options
  • Save sgaliamov/7c9c58157b1c7cbfd611d897b78181be to your computer and use it in GitHub Desktop.
Save sgaliamov/7c9c58157b1c7cbfd611d897b78181be to your computer and use it in GitHub Desktop.
public delegate ILEmitter ILEmitterFunc(in ILEmitter emitter);
...
public static ILEmitterFunc Add(ILEmitterFunc func1, ILEmitterFunc func2) =>
(in ILEmitter il) => il.Add(func1, func2);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment