Last Updated : 11 Jul, 2025
ListDictionary.IsReadOnlyproperty is used to get a value indicating whether the ListDictionary is read-only or not.
Syntax:public bool IsReadOnly { get; }Return Value :
This property always returns
false.
Example: CSHARP
// C# code to check if ListDictionary is read-only
using System;
using System.Collections;
using System.Collections.Specialized;
class GFG {
// Driver code
public static void Main()
{
// Creating a ListDictionary named myDict
ListDictionary myDict = new ListDictionary();
myDict.Add("Australia", "Canberra");
myDict.Add("Belgium", "Brussels");
myDict.Add("Netherlands", "Amsterdam");
myDict.Add("China", "Beijing");
myDict.Add("Russia", "Moscow");
myDict.Add("India", "New Delhi");
// Checking if ListDictionary is read-only
Console.WriteLine(myDict.IsReadOnly);
}
}
Output:
FalseNote:
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