Skip to content

Instantly share code, notes, and snippets.

@sgaliamov
Created May 2, 2021 15:29
Show Gist options
  • Save sgaliamov/a8d6f3394295ad546f36c46a329e6508 to your computer and use it in GitHub Desktop.
Save sgaliamov/a8d6f3394295ad546f36c46a329e6508 to your computer and use it in GitHub Desktop.
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