SymbolDisplayGenericsOptions Enum

Definition

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 in or out keywords before variant type parameters. For example, "Goo<out T>" in C# or (Goo Of Out T" in Visual Basic.

None 0

Omits the type parameter list entirely.

Applies to