using System.Collections; DictionarymyDict = new Dictionary (); myDict.Put("First Name", "John"); myDict.Put("Last Name", "Doe"); myDict.Put("Country", "USA");
using System.Collections; DictionaryPackage Library: The System.Collections namespace is part of the .NET Framework's base class library.myDict = new Dictionary { { "First Name", "John" }, { "Last Name", "Doe" }, { "Country", "USA" } };