SetMethodBody() public method

public SetMethodBody ( byte il, int maxStack, byte localSignature, IEnumerable exceptionHandlers, IEnumerable tokenFixups ) : void
il byte
maxStack int
localSignature byte
exceptionHandlers IEnumerable
tokenFixups IEnumerable
return void
Esempio n. 1
0
 public void SetMethodBody(byte[] il, int maxStack, byte[] localSignature, IEnumerable <ExceptionHandler> exceptionHandlers, IEnumerable <int> tokenFixups)
 {
     methodBuilder.SetMethodBody(il, maxStack, localSignature, exceptionHandlers, tokenFixups);
 }