Enum TypeKind
- Namespace
- Garyon.Reflection
- Assembly
- Garyon.dll
Contains values representing the kind of a Type.
[Flags]
public enum TypeKind : ushort
- Extension Methods
Fields
Array = 128An array type.
Attribute = 1026An attribute type.
ByRef = 256A by reference type.
Class = 2A class type.
Delegate = 32A delegate type.
Enum = 16An enum type.
Exception = 514An exception type.
Interface = 8An interface type.
None = 0The default value that represents no type kind.
NullableStruct = 4100A nullable struct type.
NullableTuple = Tuple | NullableStructA nullable tuple type.
Pointer = 64A pointer type.
Struct = 4A struct type.
Tuple = 2048A tuple type.
Void = 1The void type.