A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://www.geeksforgeeks.org/c-sharp/c-sharp-check-if-ordereddictionary-collection-is-read-only/ below:

C# | Check if OrderedDictionary collection is read-only

C# | Check if OrderedDictionary collection is read-only

Last Updated : 11 Jul, 2025

OrderedDictionary.IsReadOnly

property is used to get a value that indicates whether the OrderedDictionary collection is read-only or not.

Syntax :
public bool IsReadOnly { get; }
Return Value:

This property returns

True

if the OrderedDictionary collection is read-only, otherwise,

False

. The default is

False

. Below given are some examples to understand the implementation in a better way:

Example 1: CSHARP
// C# code to check if OrderedDictionary
// collection is read-only
using System;
using System.Collections;
using System.Collections.Specialized;

class GFG {

    // Driver method
    public static void Main()
    {

        // Creating a orderedDictionary named myDict
        OrderedDictionary myDict = new OrderedDictionary();

        // Adding key and value in myDict
        myDict.Add("key1", "value1");
        myDict.Add("key2", "value2");
        myDict.Add("key3", "value3");
        myDict.Add("key4", "value4");
        myDict.Add("key5", "value5");

        // Checking if OrderedDictionary
        // collection is read-only
        Console.WriteLine(myDict.IsReadOnly);
    }
}
Output:
False
Example 2: CSHARP
// C# code to check if OrderedDictionary
// collection is read-only
using System;
using System.Collections;
using System.Collections.Specialized;

class GFG {

    // Driver method
    public static void Main()
    {

        // Creating a orderedDictionary named myDict
        OrderedDictionary myDict = new OrderedDictionary();

        // Adding key and value in myDict
        myDict.Add("A", "Apple");
        myDict.Add("B", "Banana");
        myDict.Add("C", "Cat");
        myDict.Add("D", "Dog");

        // Checking if OrderedDictionary
        // collection is read-only
        // if not, insert a new key in beginning
        // of myDict
        if (!myDict.IsReadOnly)
            myDict.Insert(0, "E", "Elephant");

        // Displaying the elements in myDict
        foreach(DictionaryEntry de in myDict)
            Console.WriteLine(de.Key + " -- " + de.Value);
    }
}
Output:
E -- Elephant
A -- Apple
B -- Banana
C -- Cat
D -- Dog
Note: Reference:

RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4