Beispiel #1
0
 public LogicGroup(LogicLinksEnum op, uint andId)
 {
     this.Op             = op;
     this.List           = new List <uint>(); (this.List as List <uint>).Add(andId);
     this._andListString = andId.ToString("x");
 }
Beispiel #2
0
 public LogicGroup(LogicLinksEnum op, IList <uint> andList)
 {
     this.Op             = op;
     this.List           = andList;
     this._andListString = String.Join("-", andList.Select(s => s.ToString("x")));
 }