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
Name | Value | Description |
---|---|---|
Unknown | 0 | Type's kind is undefined. |
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. |
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 |
TypeParameter | 11 | Type is a type parameter. |
Submission | 12 | Type is an interactive submission. |
FunctionPointer | 13 | Type is a function pointer. |
Applies to
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET