Struct in BasicBlock
Inherits from System.ValueType
A destination represents a BasicBlock or node that may be run, following the execution of a BasicBlock .
public struct DestinationDestination objects represent links between blocks, or between blocks and nodes.
The type of a Destination.
The block that this destination refers to.
The condition that causes this destination to be reached.
The name of the node that this destination refers to.
Gets the Destination's type - whether the destination is a block, or a node.
Property in
The block that this destination refers to.
This value is only valid when is .
public BasicBlock Block { get; set; }Property in
The condition that causes this destination to be reached.
Property in
The name of the node that this destination refers to.
This value is only valid when is .
public Condition Condition { get; set; }public string NodeName { get; set; }Property in
Gets the Destination's type - whether the destination is a block, or a node.
Enumeration Member in
Enumeration Member in
public DestinationType Type { get; set; }NodeBlockEnum in Destination
Inherits from System.Enum
The type of a Destination.
public enum DestinationType
{
Node,
Block
}