• Webinars
  • Docs
  • Download
  • Blogs
  • Contact Us
Try NCache Live
Show / Hide Table of Contents

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");
Back to top Copyright © 2017 Alachisoft