mirror of
https://gitee.com/csharpui/CPF.git
synced 2025-09-18 09:44:52 +08:00
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;
|
|
}
|
|
}
|
|
}
|