Enum InvokableTypeKind
- Namespace
- Garyon.Reflection
- Assembly
- Garyon.dll
Determines the kind of an invokable type. It could be a delegate, a function pointer, or not a valid invokable type.
public enum InvokableTypeKind
- Extension Methods
Fields
Delegate = 1Represents a delegate type.
FunctionPointer = 2Represents a function pointer type.
Invalid = 0Represents an invalid invokable type. It could be a type that is not invokable, or an unsupported invokable type.