Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
KeyValuePairs.cs
Go to the documentation of this file.
2
3namespace System.Collections;
4
5[DebuggerDisplay("{_value}", Name = "[{_key}]")]
6internal sealed class KeyValuePairs
7{
8 [DebuggerBrowsable(DebuggerBrowsableState.Never)]
9 private readonly object _key;
10
11 [DebuggerBrowsable(DebuggerBrowsableState.Never)]
12 private readonly object _value;
13
14 public KeyValuePairs(object key, object value)
15 {
16 _value = value;
17 _key = key;
18 }
19}
KeyValuePairs(object key, object value)