18 lines
300 B
C#
18 lines
300 B
C#
using System.Reflection;
|
|
|
|
namespace CPF.Mac.ObjCRuntime
|
|
{
|
|
public struct MethodDescription
|
|
{
|
|
public MethodBase method;
|
|
|
|
public ArgumentSemantic semantic;
|
|
|
|
public MethodDescription(MethodBase method, ArgumentSemantic semantic)
|
|
{
|
|
this.method = method;
|
|
this.semantic = semantic;
|
|
}
|
|
}
|
|
}
|