Method Remove
Remove(String)
Removes the key value pair from named tags dictionary
Declaration
public void Remove(string key)
Parameters
Type | Name | Description |
---|---|---|
System.String | key | Key of an item |
Examples
Removing a named tag
NamedTagsDictionary tags = new NamedTagsDictionary();
tags.Add("Tag1", int.MaxValue);
tags.Remove("Tag1");