Lines Matching refs:object
44 public static bool containsKey( this IDictionary map, object key )
50 public static object get( this IDictionary map, object key )
93 public static void put( this IDictionary map, object key, object value )
111 public static HashSet<object> keySet( this IDictionary map )
113 return new HashSet<object>( map.Keys.Cast<object>() );
130 public static HashSet<object> keySet<TKey, TValue>( this SortedList<TKey, TValue> map )
132 return new HashSet<object>( map.Keys.Cast<object>() );