public bool ItemDelete(string key) { if (string.IsNullOrWhiteSpace(key)) { throw new ArgumentException("Parameter is invalid.", "key", null); } try { bool result = _db.KeyDelete(key); return(result); } catch (Exception) { throw; } finally { } }
public void Exit() { database.KeyDelete("test"); }