Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
IDictionary.cs
Go to the documentation of this file.
2
4
5public interface IDictionary<TKey, TValue> : ICollection<KeyValuePair<TKey, TValue>>, IEnumerable<KeyValuePair<TKey, TValue>>, IEnumerable
6{
7 TValue this[TKey key] { get; set; }
8
10
12
13 bool ContainsKey(TKey key);
14
15 void Add(TKey key, TValue value);
16
17 bool Remove(TKey key);
18
19 bool TryGetValue(TKey key, [MaybeNullWhen(false)] out TValue value);
20}
bool TryGetValue(TKey key, [MaybeNullWhen(false)] out TValue value)
void Add(TKey key, TValue value)