CSharp examples for System.Collections:IDictionary
Empty Map
using System.Collections.ObjectModel; using System.Collections.Generic; using System.Collections; public class Main{ public static IDictionary<K,V> EmptyMap<K,V> () {//from w w w .j av a2s . c om return new Dictionary<K,V> (); } }