22 lines
670 B
C#
22 lines
670 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Diagnostics;
|
|
using System.Reflection;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace System.Collections.ObjectModel
|
|
{
|
|
/// <summary>Represents a read-only, generic collection of key/value pairs.</summary>
|
|
/// <typeparam name="TKey">The type of keys in the dictionary.</typeparam>
|
|
/// <typeparam name="TValue">The type of values in the dictionary.</typeparam>
|
|
// Token: 0x020005F4 RID: 1524
|
|
[Token(Token = "0x20005F4")]
|
|
[DebuggerDisplay("Count = {Count}")]
|
|
[DebuggerTypeProxy(typeof(Mscorlib_DictionaryDebugView<, >))]
|
|
[DefaultMember("Item")]
|
|
[Serializable]
|
|
public class ReadOnlyDictionary<TKey, TValue>
|
|
{
|
|
}
|
|
}
|