Home
Map
IDictionary Use, Generic InterfaceUse the IDictionary generic interface. IDictionary is implemented by the Dictionary and SortedDictionary.
C#
This page was last reviewed on Oct 26, 2021.
IDictionary. How can we use the C# IDictionary interface? Many lookup types (Dictionary, SortedDictionary) implement the IDictionary interface.
C# interface notes. We can make types that implement IDictionary. But it is useful too as an abstraction—we can accept IDictionary as a parameter type.
Dictionary
interface
Example. This program uses Dictionary and SortedDictionary. Suppose that you want to add some functionality that can work on an instance of Dictionary or an instance of SortedDictionary.
Tip This code only needs to be written once if you have it use the IDictionary type.
Next The WriteKeyA method works equally well on Dictionary and SortedDictionary instances.
using System; using System.Collections.Generic; class Program { static void Main() { // Dictionary implements IDictionary. Dictionary<string, string> dict = new Dictionary<string, string>(); dict["A"] = "B"; WriteKeyA(dict); // SortedDictionary implements IDictionary. SortedDictionary<string, string> sort = new SortedDictionary<string, string>(); sort["A"] = "C"; WriteKeyA(sort); } static void WriteKeyA(IDictionary<string, string> i) { // Use instance through IDictionary interface. Console.WriteLine(i["A"]); } }
B C
Fields and variables. It is also possible to have fields of type IDictionary. This can make it possible to have a class that can use any dictionary type without worrying about which one it is.
class
Tip You could even later implement a custom Dictionary type and never need to change this class. Variables can use type IDictionary.
Discussion. The IDictionary type has many required methods. The Dictionary type itself is good at what it does. An alternative implementation would not be of much use in most programs.
Further Even the alternatives in the .NET Framework, such as SortedDictionary, are typically not useful.
SortedDictionary
Summary. IDictionary can be used in an implementation of a custom dictionary. It can also be used in programs that act upon different dictionary types including Dictionary and SortedDictionary.
Dot Net Perls is a collection of tested code examples. Pages are continually updated to stay current, with code correctness a top priority.
Sam Allen is passionate about computer languages. In the past, his work has been recommended by Apple and Microsoft and he has studied computers at a selective university in the United States.
This page was last updated on Oct 26, 2021 (edit).
Home
Changes
© 2007-2024 Sam Allen.