コード例 #1
0
ファイル: Program.cs プロジェクト: williamson020/codespace
 internal void Invoke(MethodType m)
 {
     Insert(Instruction.MethodCall(m));
 }
コード例 #2
0
 internal static Instruction MethodCall(MethodType operand)
 {
     return(new Instruction(OpType.OpMethodCall, operand));
 }
コード例 #3
0
 internal MethodCallArgumentType(MethodType m)
     : base(typeof(MethodType), m.PublicName, null)
 {
 }