Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
Else.cs
2{
6 public class Else : ActionContainer
7 {
11 public Else()
12 : base()
13 {
14 }
15
19 public override string LocalName => nameof(Else);
20
25 public override IStateMachineNode Create()
26 {
27 return new Else();
28 }
29 }
30}
Abstract base class for action nodes that contain other action nodes.
Actions executed if condition or conditions not matching.
Definition: Else.cs:7
Else()
Actions executed if condition or conditions not matching.
Definition: Else.cs:11
override IStateMachineNode Create()
Creates a new node of the corresponding type.
Definition: Else.cs:25