Cosmos/source2/IL2PCU/Cosmos.IL2CPU/ILOpCodes/OpMethod.cs
kudzu_cp 1f9a36ddf8
2009-09-13 03:24:18 +00:00

16 lines
369 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
using System.Text;
namespace Cosmos.IL2CPU.ILOpCodes {
public class OpMethod: ILOpCode {
public readonly MethodBase Value;
public OpMethod(Code aOpCode, int aPos, MethodBase aValue)
: base(aOpCode, aPos) {
Value = aValue;
}
}
}