BoolList.RemoveItem(String) Method
In This Article
Removes a key/value pair with a particular key from the BoolList‘s collection.
Namespace: DevExpress.ExpressApp.Utils
Assembly: DevExpress.ExpressApp.v24.2.dll
NuGet Package: DevExpress.ExpressApp
#Declaration
#Parameters
Name | Type | Description |
---|---|---|
key | String | A string representing the key of the key/value pair that will be removed from the Bool |
#Remarks
The following code snippet illustrates use of the RemoveItem method:
BoolList mylist = new BoolList();
mylist["myKey"] = true;
mylist.RemoveItem("myKey");
//mylist.Contains("myKey") == false;
To get all keys from the BoolList‘s collection of key/value pairs, use the BoolList.GetKeys method. To check whether a particular key exists, use the BoolList.Contains method.
See Also