NullableFlowState Enum

Definition

Represents the compiler's analysis of whether an expression may be null

public enum NullableFlowState
type NullableFlowState = 
Public Enum NullableFlowState
Inheritance
NullableFlowState

Fields

MaybeNull 2

Expression may be null.

None 0

Syntax is not an expression, or was not analyzed.

NotApplicable 0

Syntax is not an expression, or was not analyzed.

NotNull 1

Expression is not null.

Applies to