Lines Matching defs:value
147 map1.Add("a", "first value");
148 map1.Add("b", "second value");
151 map2.Add("a", "third value");
152 map2.Add("b", "fourth value");
233 Assert.IsFalse(collection.Remove(NewKeyValuePair("foo", "wrong value")));
321 Assert.Throws<InvalidCastException>(() => dictionary.Add("value is bad", new object()));
496 Assert.IsFalse(keys.Contains("bar")); // It's a value!
590 // map will have string key and string value
596 output.WriteLength(20); // total of keyTag + key + valueTag + value
630 private static KeyValuePair<TKey, TValue> NewKeyValuePair<TKey, TValue>(TKey key, TValue value)
632 return new KeyValuePair<TKey, TValue>(key, value);