Scalien.Sequence.Set C# (CSharp) Method

Set() public method

Set the sequence to a given value. The next time GetNext is called, value will be returned.
This sets:

key => value

public Set ( ulong value ) : void
value ulong
return void
        public virtual void Set(ulong value)
        {
            client.SequenceSet(tableID, key, value);
        }