Ejemplo n.º 1
0
            public DebuggerProxy(KeyedCollection <TKey, TItem> collection)
            {
                if (collection == null)
                {
                    throw new ArgumentNullException("collection");
                }

                m_collection = collection;
            }
Ejemplo n.º 2
0
        public ReadOnlyKeyedCollection(KeyedCollection <T, U> collection)
        {
            if (collection == null)
            {
                throw new ArgumentNullException(nameof(collection));
            }

            m_collection = collection;
        }