SymbolDisplayGenericsOptions 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.
Specifies the options for how generics are displayed in the description of a symbol.
This enumeration supports a bitwise combination of its member values.
public enum class SymbolDisplayGenericsOptions
[System.Flags]
public enum SymbolDisplayGenericsOptions
[<System.Flags>]
type SymbolDisplayGenericsOptions =
Public Enum SymbolDisplayGenericsOptions
- Inheritance
-
SymbolDisplayGenericsOptions
- Attributes
Fields
IncludeTypeConstraints | 2 | Includes type parameters and constraints. For example, "where T : new()" in C# or "Of T as New" in Visual Basic. |
IncludeTypeParameters | 1 | Includes the type parameters. For example, "Goo<T>" in C# or "Goo(Of T)" in Visual Basic. |
IncludeVariance | 4 | Includes |
None | 0 | Omits the type parameter list entirely. |