Scalien.Table.Delete C# (CSharp) Method

Delete() public method

Delete a key-value pair by key in the table.
public Delete ( byte key ) : void
key byte The key.
return void
        public virtual void Delete(byte[] key)
        {
            client.Delete(tableID, key);
        }

Same methods

Table::Delete ( string key ) : void

Usage Example

Example #1
0
 public void DeleteUser(TestUser user)
 {
     table.Delete(user.info.id);
     tableByNick.Delete(user.info.Nick + "|" + user.info.id.ToString());
     tableByBirth.Delete(user.info.DateOfBirth + "|" + user.info.id.ToString());
     tableByLastLogin.Delete(user.info.LastLogin + "|" + user.info.id.ToString());
 }
All Usage Examples Of Scalien.Table::Delete