Last active
May 2, 2021 15:26
-
-
Save sgaliamov/7c9c58157b1c7cbfd611d897b78181be to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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