Scalien.Table.Add C# (CSharp) Метод

Add() публичный Метод

Add a number to a value, assuming the value is also a number. If the key does not exist, this operation will create it and set the number, as if the value was 0 before.
public Add ( byte key, long number ) : long
key byte The key.
number long The number.
Результат long
        public virtual long Add(byte[] key, long number)
        {
            return client.Add(tableID, key, number);
        }

Same methods

Table::Add ( string key, long number ) : long