Beispiel #1
0
 public override UInt32Output TestUInt32State(UInt32Input input)
 {
     State.UInt32Info.Value = State.UInt32Info.Value.Add(input.UInt32Value);
     return(new UInt32Output()
     {
         UInt32Value = State.UInt32Info.Value
     });
 }
        public override Empty TestUInt32State(UInt32Input input)
        {
            State.UInt32Info.Value = State.UInt32Info.Value.Add(input.UInt32Value);

            return(new Empty());
        }