Cosmos/source2/IL2PCU/Cosmos.IL2CPU/MethodInfo.cs
kudzu_cp 9598c02b3e
2009-08-31 01:38:48 +00:00

18 lines
404 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
using System.Text;
namespace Cosmos.IL2CPU {
public class MethodInfo {
public readonly MethodBase MethodBase;
public readonly UInt32 UID;
public MethodInfo(MethodBase aMethodBase, UInt32 aUID ) {
MethodBase = aMethodBase;
UID = aUID;
}
}
}