Cosmos/Users/Matthijs/Testing/IRs/EcmaCil/IL/InstructionMethod.cs

22 lines
No EOL
447 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace EcmaCil.IL
{
public class InstructionMethod : BaseInstruction
{
public InstructionMethod(InstructionKindEnum aKind, int aIndex, MethodMeta aValue)
: base(aKind, aIndex)
{
Value = aValue;
}
public MethodMeta Value
{
get;
private set;
}
}
}