コード例 #1
0
 public static void ReThrow()
 {
     CurrentEmitContext.Emit(CreateInstruction.ReThrow());
 }
コード例 #2
0
 public static void LoadMetadataToken(Mono.Cecil.IMemberDefinition member)
 {
     CurrentEmitContext.Emit(CreateInstruction.LoadMetadataToken(member));
 }
コード例 #3
0
 public static void CallVirtual(Mono.Cecil.MethodReference method)
 {
     CurrentEmitContext.Emit(CreateInstruction.CallVirtual(method));
 }
コード例 #4
0
 public static void Nop()
 {
     CurrentEmitContext.Emit(CreateInstruction.Nop());
 }
コード例 #5
0
 public static void LoadFloat(float float32)
 {
     CurrentEmitContext.Emit(CreateInstruction.LoadFloat(float32));
 }
コード例 #6
0
 public static void LoadDouble(double float64)
 {
     CurrentEmitContext.Emit(CreateInstruction.LoadDouble(float64));
 }
コード例 #7
0
 public static void LoadInteger(int int32)
 {
     CurrentEmitContext.Emit(CreateInstruction.LoadInteger(int32));
 }
コード例 #8
0
 public static void LoadLong(long int64)
 {
     CurrentEmitContext.Emit(CreateInstruction.LoadLong(int64));
 }
コード例 #9
0
 public static void StoreStaticField(Mono.Cecil.FieldReference field)
 {
     CurrentEmitContext.Emit(CreateInstruction.StoreStaticField(field));
 }
コード例 #10
0
 public static void LoadString(string str)
 {
     CurrentEmitContext.Emit(CreateInstruction.LoadString(str));
 }
コード例 #11
0
 public static void LoadStaticFieldAdress(Mono.Cecil.FieldReference field)
 {
     CurrentEmitContext.Emit(CreateInstruction.LoadStaticFieldAdress(field));
 }
コード例 #12
0
 public static void LoadVariableAdress(byte variableIndex)
 {
     CurrentEmitContext.Emit(CreateInstruction.LoadVariableAdress(variableIndex));
 }
コード例 #13
0
 public static void StoreVariable(byte variableIndex)
 {
     CurrentEmitContext.Emit(CreateInstruction.StoreVariable(variableIndex));
 }
コード例 #14
0
 public static void LoadArgumentAdress(byte argumentIndex)
 {
     CurrentEmitContext.Emit(CreateInstruction.LoadArgumentAdress(argumentIndex));
 }
コード例 #15
0
 public static void StoreArgument(byte argumentIndex)
 {
     CurrentEmitContext.Emit(CreateInstruction.StoreArgument(argumentIndex));
 }