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

Property Count

Count

Returns the number of items in named tags dictionary

Declaration
public int Count { get; }
Property Value
Type Description
System.Int32
Examples

Example prints number of tags

NamedTagsDictionary tags = new NamedTagsDictionary();
tags.Add("Tag1", int.MaxValue);
Console.WriteLine("Number of Named Tags: " + tags.Count);
Back to top Copyright © 2017 Alachisoft