Created
May 2, 2021 15:29
-
-
Save sgaliamov/a8d6f3394295ad546f36c46a329e6508 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 static ILEmitter Beq_S( | |
| this ILEmitter self, | |
| in ILEmitterFunc func1, | |
| in ILEmitterFunc func2, | |
| in Label label) { | |
| func1(self); | |
| func2(self); | |
| return self.Beq_S(label); | |
| } | |
| ... | |
| public static ILEmitterFunc Beq_S( | |
| ILEmitterFunc func1, ILEmitterFunc func2, Label label) => | |
| (in ILEmitter il) => il.Beq_S(func1, func2, label); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment