
- C# Basic Tutorial
- C# - Home
- C# - Overview
- C# - Environment
- C# - Program Structure
- C# - Basic Syntax
- C# - Data Types
- C# - Type Conversion
- C# - Variables
- C# - Constants
- C# - Operators
- C# - Decision Making
- C# - Loops
- C# - Encapsulation
- C# - Methods
- C# - Nullables
- C# - Arrays
- C# - Strings
- C# - Structure
- C# - Enums
- C# - Classes
- C# - Inheritance
- C# - Polymorphism
- C# - Operator Overloading
- C# - Interfaces
- C# - Namespaces
- C# - Preprocessor Directives
- C# - Regular Expressions
- C# - Exception Handling
- C# - File I/O
- C# Advanced Tutorial
- C# - Attributes
- C# - Reflection
- C# - Properties
- C# - Indexers
- C# - Delegates
- C# - Events
- C# - Collections
- C# - Generics
- C# - Anonymous Methods
- C# - Unsafe Codes
- C# - Multithreading
- C# Useful Resources
- C# - Questions and Answers
- C# - Quick Guide
- C# - Useful Resources
- C# - Discussion
Count the number of key/value pairs in HybridDictionary in C#
To count the number of key/value pairs in HybridDictionary, the code is as follows −
Example
using System; using System.Collections; using System.Collections.Specialized; public class Demo { public static void Main(){ HybridDictionary dict1 = new HybridDictionary(); dict1.Add("A", "SUV"); dict1.Add("B", "MUV"); dict1.Add("C", "AUV"); Console.WriteLine("HybridDictionary1 elements..."); foreach(DictionaryEntry d in dict1){ Console.WriteLine(d.Key + " " + d.Value); } Console.WriteLine("Count of Key/value pairs in Dictionary1 = "+dict1.Count); HybridDictionary dict2 = new HybridDictionary(); dict2.Add("1", "One"); dict2.Add("2", "Two"); dict2.Add("3", "Three"); dict2.Add("4", "Four"); dict2.Add("5", "Five"); dict2.Add("6", "Six"); Console.WriteLine("
HybridDictionary2 elements..."); foreach(DictionaryEntry d in dict2){ Console.WriteLine(d.Key + " " + d.Value); } Console.WriteLine("Count of Key/value pairs in Dictionary2 = "+dict1.Count); dict2.Clear(); Console.WriteLine("Count of Key/value pairs in Dictionary2 (Updated) = "+dict2.Count); } }
Output
This will produce the following output −
HybridDictionary1 elements... A SUV B MUV C AUV Count of Key/value pairs in Dictionary1 = 3 HybridDictionary2 elements... 1 One 2 Two 3 Three 4 Four 5 Five 6 Six Count of Key/value pairs in Dictionary2 = 3 Count of Key/value pairs in Dictionary2 (Updated) = 0
Example
Let us now see another example −
using System; using System.Collections; using System.Collections.Specialized; public class Demo { public static void Main(){ HybridDictionary dict = new HybridDictionary(); dict.Add("A", "SUV"); dict.Add("B", "MUV"); dict.Add("C", "AUV"); Console.WriteLine("HybridDictionary elements..."); foreach(DictionaryEntry d in dict){ Console.WriteLine(d.Key + " " + d.Value); } Console.WriteLine("Count of Key/value pairs in Dictionary = "+dict.Count); dict.Add("D", "Utility Vehicle"); dict.Add("E", "Convertible"); Console.WriteLine("Count of Key/value pairs in Dictionary (Updated) = "+dict.Count); } }
Output
This will produce the following output −
HybridDictionary elements... A SUV B MUV C AUV Count of Key/value pairs in Dictionary = 3 Count of Key/value pairs in Dictionary (Updated) = 5
- Related Articles
- Count the number of key/value pairs in the Hashtable in C#
- Get the number of key/value pairs in the Dictionary in C#
- Get the number of key/value pairs in the StringDictionary in C#
- Get the number of key/value pairs contained in ListDictionary in C#
- Adding the specified key and value into HybridDictionary in C#
- Gets or sets the value in HybridDictionary with specified key in C#
- Display records on the basis of key-value pairs in MySQL
- Count number of pairs (A
- Get the number of key/values pairs contained in OrderedDictionary in C#
- Check the HybridDictionary for a specific key in C#
- Removing the specified key entry from HybridDictionary in C#
- How to add key/value pairs in SortedList in C#?
- Create a TreeMap in Java and add key-value pairs
- Python Program to print key value pairs in a dictionary
- Updating a set of documents from a list of key value pairs in MongoDB

Advertisements