Courses
Tutorials
Practice
Data Structure
Java
Python
HTML
Interview Preparation
DSA
Practice Problems
C
C++
Java
Python
JavaScript
Data Science
Machine Learning
Courses
Linux
DevOps
SQL
Web Development
System Design
Aptitude
GfG Premium
Similar Topics
Web Technologies
37.4K+ articles
DSA
22.8K+ articles
Python
21.3K+ articles
Experiences
16.6K+ articles
Interview Experiences
14.1K+ articles
JavaScript
12.2K+ articles
School Learning
11.5K+ articles
C#
1.9K+ articles
CSharp-method
701+ articles
CSharp-Specialized-Namespace
91+ articles
CSharp-Specialized-OrderedDictionary
17 posts
Recent Articles
Popular Articles
How to create an OrderedDictionary in C#
Last Updated: 27 February 2019
OrderedDictionary() constructor is used to initialize a new instance of the OrderedDictionary class which will be empty and will have the default initial capacity. Ordered...
read more
C#
CSharp-Specialized-Namespace
CSharp-Specialized-OrderedDictionary
C# | Check if two OrderedDictionary objects are equal
Last Updated: 01 February 2019
Equals(Object) Method which is inherited from the Object class is used to check if a specified OrderedDictionary object is equal to another OrderedDictionary object or not...
read more
C#
CSharp-method
CSharp-Specialized-Namespace
CSharp-Specialized-OrderedDictionary
C# | Insert a new entry in OrderedDictionary with specified key and value
Last Updated: 01 February 2019
OrderedDictionary.Insert(Int32, Object, Object) Method is used to inserts a new entry into the OrderedDictionary collection with the specified key and value at the specifi...
read more
C#
CSharp-method
CSharp-Specialized-Namespace
CSharp-Specialized-OrderedDictionary
C# | Copy OrderedDictionary elements to Array instance at the specified index
Last Updated: 01 February 2019
OrderedDictionary.CopyTo(Array, Int32) method is used to copy the OrderedDictionary elements to a one-dimensional Array object at the specified index.Syntax:public void Co...
read more
C#
CSharp-method
CSharp-Specialized-Namespace
CSharp-Specialized-OrderedDictionary
C# | Remove the entry at specified index from OrderedDictionary
Last Updated: 01 February 2019
OrderedDictionary.RemoveAt(Int32) method is used to remove the entry at the specified index from the OrderedDictionary collection.Syntax:public void RemoveAt (int index);H...
read more
C#
CSharp-method
CSharp-Specialized-Namespace
CSharp-Specialized-OrderedDictionary
C# | Get an ICollection containing keys in OrderedDictionary
Last Updated: 01 February 2019
OrderedDictionary.Keys property is used to get an ICollection object containing the keys in the OrderedDictionary collection.Syntax:public System.Collections.ICollection K...
read more
C#
CSharp-Specialized-Namespace
CSharp-Specialized-OrderedDictionary
C# | Get an ICollection containing values in OrderedDictionary
Last Updated: 01 February 2019
OrderedDictionary.Values property is used to get an ICollection object containing the values in the OrderedDictionary collection.Syntax:public System.Collections.ICollecti...
read more
C#
CSharp-Specialized-Namespace
CSharp-Specialized-OrderedDictionary
C# | Get an IDictionaryEnumerator object in OrderedDictionary
Last Updated: 01 February 2019
OrderedDictionary.GetEnumerator method returns an IDictionaryEnumerator object that iterates through the OrderedDictionary collection.Syntax:public virtual System.Collecti...
read more
C#
CSharp-method
CSharp-Specialized-Namespace
CSharp-Specialized-OrderedDictionary
C# | Remove entry with specified key from OrderedDictionary
Last Updated: 01 February 2019
OrderedDictionary.Remove(Object) method is used to remove entry with the specified key from the OrderedDictionary collection.Syntax:public void Remove (object key);Here, k...
read more
C#
CSharp-method
CSharp-Specialized-Namespace
CSharp-Specialized-OrderedDictionary
C# | Get the number of key/values pairs contained in OrderedDictionary
Last Updated: 01 February 2019
OrderedDictionary.Count property is used to get the number of key/values pairs contained in the OrderedDictionary collection.Syntax:public int Count { get; }Return Value: ...
read more
C#
CSharp-Specialized-Namespace
CSharp-Specialized-OrderedDictionary
C# | Remove all elements from OrderedDictionary
Last Updated: 01 February 2019
OrderedDictionary.Clear method is used to remove all elements from the OrderedDictionary collection.Syntax:public void Clear ();Exception: If the OrderedDictionary collect...
read more
C#
CSharp-method
CSharp-Specialized-Namespace
CSharp-Specialized-OrderedDictionary
C# OrderedDictionary Class
Last Updated: 04 February 2025
In C#, the OrderedDictionary Classrepresents a collection of key/value pairs that are accessible by the key or index. It is present inSystem.Collections.Specializednamespa...
read more
C#
CSharp-Specialized-Namespace
CSharp-Specialized-OrderedDictionary
C# | Check if OrderedDictionary collection is read-only
Last Updated: 01 February 2019
OrderedDictionary.IsReadOnly property is used to get a value that indicates whether the OrderedDictionary collection is read-only or not.Syntax :public bool IsReadOnly { g...
read more
C#
CSharp-Specialized-Namespace
CSharp-Specialized-OrderedDictionary
C# | OrderedDictionary.Item[Object] Property
Last Updated: 16 September 2021
There are two methods in the overload list of this property as follows:Item[Int32] : Used to get or set the value at the specified index.Item[Object] : Used to get or set ...
read more
C#
CSharp-Specialized-Namespace
CSharp-Specialized-OrderedDictionary
C# | Get a read-only copy of the OrderedDictionary
Last Updated: 01 February 2019
OrderedDictionary.AsReadOnly method returns a read-only copy of the current OrderedDictionary collection.Syntax:public System.Collections.Specialized.OrderedDictionary AsR...
read more
C#
CSharp-method
CSharp-Specialized-Namespace
CSharp-Specialized-OrderedDictionary
1
2
We use cookies to ensure you have the best browsing experience on our website. By using our site, you acknowledge that you have read and understood our
Cookie Policy
&
Privacy Policy
Got It !