TypeKind Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Enumeration for possible kinds of type symbols.
public enum class TypeKind
public enum TypeKind
type TypeKind =
Public Enum TypeKind
- Inheritance
-
TypeKind
Fields
Array | 1 | Type is an array type. |
Class | 2 | Type is a class. |
Delegate | 3 | Type is a delegate. |
Dynamic | 4 | Type is dynamic. |
Enum | 5 | Type is an enumeration. |
Error | 6 | Type is an error type. |
FunctionPointer | 13 | Type is a function pointer. |
Interface | 7 | Type is an interface. |
Module | 8 | Type is a module. |
Pointer | 9 | Type is a pointer. |
Struct | 10 | Type is a C# struct or VB Structure |
Structure | 10 | Type is a C# struct or VB Structure |
Submission | 12 | Type is an interactive submission. |
TypeParameter | 11 | Type is a type parameter. |
Unknown | 0 | Type's kind is undefined. |