Esempio n. 1
0
 public ushort Value()
 {
     if (!isCached)
     {
         cachedValue = Input.Value();
     }
     isCached = true;
     return(cachedValue);
 }
Esempio n. 2
0
 public ushort Value()
 {
     return((ushort)~Input1.Value());
 }
Esempio n. 3
0
 public ushort Value()
 {
     return((ushort)(Input1.Value() >> ShiftAmount));
 }
Esempio n. 4
0
 public ushort Value()
 {
     return((ushort)(Input1.Value() | Input2.Value()));
 }