Beispiel #1
0
 public override UInt64Output TestUInt64State(UInt64Input input)
 {
     State.UInt64Info.Value = State.UInt64Info.Value.Add(input.UInt64Value);
     return(new UInt64Output()
     {
         UInt64Value = State.UInt64Info.Value
     });
 }
        public override Empty TestUInt64State(UInt64Input input)
        {
            State.UInt64Info.Value = State.UInt64Info.Value.Add(input.UInt64Value);

            return(new Empty());
        }