1 write to contents
System (1)
compmod\system\collections\specialized\stringdictionary.cs (1)
185contents = useThisHashtableInstead;
19 references to contents
System (19)
compmod\system\collections\specialized\stringdictionary.cs (14)
50return contents.Count; 61return contents.IsSynchronized; 74return (string) contents[key.ToLower(CultureInfo.InvariantCulture)]; 81contents[key.ToLower(CultureInfo.InvariantCulture)] = value; 90return contents.Keys; 100return contents.SyncRoot; 109return contents.Values; 121contents.Add(key.ToLower(CultureInfo.InvariantCulture), value); 128contents.Clear(); 139return contents.ContainsKey(key.ToLower(CultureInfo.InvariantCulture)); 146return contents.ContainsValue(value); 154contents.CopyTo(array, index); 161return contents.GetEnumerator(); 172contents.Remove(key.ToLower(CultureInfo.InvariantCulture));
compmod\system\collections\specialized\stringdictionarywithcomparer.cs (5)
36return (string) contents[key]; 43contents[key] = value; 52contents.Add(key, value); 60return contents.ContainsKey(key); 68contents.Remove(key);