CPF/CPF.Mac/Mac/ObjCRuntime/MethodDescription.cs
2023-11-21 23:05:03 +08:00

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;
}
}
}