private bool AllExists(HashTable table) { table.Add("one"); table.Add("two"); return(table.Exists("one") && table.Exists("two")); }
private bool AfterDeletionExists(HashTable table) { table.Add("Hello"); table.Delete("Hello"); return(table.Exists("Hello")); }
private bool NotEmptyDoesNotExists(HashTable table) { table.Add("Hello"); return(table.Exists("hello")); }
private bool WordDoesNotExists(HashTable table) => table.Exists("Hello");
private bool WordExists(HashTable table) { table.Add("Hello"); return(table.Exists("Hello")); }
public void Initialize() { visualStudioTable = new HashTable(vislualStudioHash); multTable = new HashTable(multHash); }