Files
mROA/mROA/Abstract/IMethodInvoker.cs
T

13 lines
259 B
C#

using System;
namespace mROA.Abstract
{
public interface IMethodInvoker
{
bool IsVoid { get; }
bool IsTrusted { get; }
Type[] ParameterTypes { get; }
Type? ReturnType { get; }
Type SuitableType { get; }
}
}