Exemplo n.º 1
0
 public Switch(string fieldID, Protocol parent)
 {
     this.FieldID = fieldID;
     this.Parent  = parent;
     Cases        = new List <SwitchCase>();
 }
Exemplo n.º 2
0
 public Statement(Protocol protocol, Expression expression)
 {
     Protocol   = protocol;
     Expression = expression;
 }
Exemplo n.º 3
0
 static ProtocolLibrary()
 {
     Protocols = new Dictionary <string, Protocol>();
     head      = null;
     Kernels   = new ProcessKernel();
 }