Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / ndp / clr / src / BCL / System / Collections / Generic / DebugView.cs / 1 / DebugView.cs
// ==++== // // Copyright (c) Microsoft Corporation. All rights reserved. // // ==--== /*============================================================================== ** ** ** ** Purpose: DebugView class for generic collections ** ** =============================================================================*/ namespace System.Collections.Generic { using System; using System.Collections.ObjectModel; using System.Security.Permissions; using System.Diagnostics; // // VS IDE can't differentiate between types with the same name from different // assembly. So we need to use different names for collection debug view for // collections in mscorlib.dll and system.dll. // internal sealed class Mscorlib_CollectionDebugView{ private ICollection collection; public Mscorlib_CollectionDebugView(ICollection collection) { if (collection == null) ThrowHelper.ThrowArgumentNullException(ExceptionArgument.collection); this.collection = collection; } [DebuggerBrowsable(DebuggerBrowsableState.RootHidden)] public T[] Items { get { T[] items = new T[collection.Count]; collection.CopyTo(items, 0); return items; } } } internal sealed class Mscorlib_DictionaryKeyCollectionDebugView { private ICollection collection; public Mscorlib_DictionaryKeyCollectionDebugView(ICollection collection) { if (collection == null) ThrowHelper.ThrowArgumentNullException(ExceptionArgument.collection); this.collection = collection; } [DebuggerBrowsable(DebuggerBrowsableState.RootHidden)] public TKey[] Items { get { TKey[] items = new TKey[collection.Count]; collection.CopyTo(items, 0); return items; } } } internal sealed class Mscorlib_DictionaryValueCollectionDebugView { private ICollection collection; public Mscorlib_DictionaryValueCollectionDebugView(ICollection collection) { if (collection == null) ThrowHelper.ThrowArgumentNullException(ExceptionArgument.collection); this.collection = collection; } [DebuggerBrowsable(DebuggerBrowsableState.RootHidden)] public TValue[] Items { get { TValue[] items = new TValue[collection.Count]; collection.CopyTo(items, 0); return items; } } } internal sealed class Mscorlib_DictionaryDebugView { private IDictionary dict; public Mscorlib_DictionaryDebugView(IDictionary dictionary) { if (dictionary == null) ThrowHelper.ThrowArgumentNullException(ExceptionArgument.dictionary); this.dict = dictionary; } [DebuggerBrowsable(DebuggerBrowsableState.RootHidden)] public KeyValuePair [] Items { get { KeyValuePair [] items = new KeyValuePair [dict.Count]; dict.CopyTo(items, 0); return items; } } } internal sealed class Mscorlib_KeyedCollectionDebugView { private KeyedCollection kc; public Mscorlib_KeyedCollectionDebugView(KeyedCollection keyedCollection) { if (keyedCollection == null) { throw new ArgumentNullException("keyedCollection"); } kc = keyedCollection; } [DebuggerBrowsable(DebuggerBrowsableState.RootHidden)] public T[] Items { get { T[] items = new T[kc.Count]; kc.CopyTo(items, 0); return items; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // ==++== // // Copyright (c) Microsoft Corporation. All rights reserved. // // ==--== /*============================================================================== ** ** ** ** Purpose: DebugView class for generic collections ** ** =============================================================================*/ namespace System.Collections.Generic { using System; using System.Collections.ObjectModel; using System.Security.Permissions; using System.Diagnostics; // // VS IDE can't differentiate between types with the same name from different // assembly. So we need to use different names for collection debug view for // collections in mscorlib.dll and system.dll. // internal sealed class Mscorlib_CollectionDebugView { private ICollection collection; public Mscorlib_CollectionDebugView(ICollection collection) { if (collection == null) ThrowHelper.ThrowArgumentNullException(ExceptionArgument.collection); this.collection = collection; } [DebuggerBrowsable(DebuggerBrowsableState.RootHidden)] public T[] Items { get { T[] items = new T[collection.Count]; collection.CopyTo(items, 0); return items; } } } internal sealed class Mscorlib_DictionaryKeyCollectionDebugView { private ICollection collection; public Mscorlib_DictionaryKeyCollectionDebugView(ICollection collection) { if (collection == null) ThrowHelper.ThrowArgumentNullException(ExceptionArgument.collection); this.collection = collection; } [DebuggerBrowsable(DebuggerBrowsableState.RootHidden)] public TKey[] Items { get { TKey[] items = new TKey[collection.Count]; collection.CopyTo(items, 0); return items; } } } internal sealed class Mscorlib_DictionaryValueCollectionDebugView { private ICollection collection; public Mscorlib_DictionaryValueCollectionDebugView(ICollection collection) { if (collection == null) ThrowHelper.ThrowArgumentNullException(ExceptionArgument.collection); this.collection = collection; } [DebuggerBrowsable(DebuggerBrowsableState.RootHidden)] public TValue[] Items { get { TValue[] items = new TValue[collection.Count]; collection.CopyTo(items, 0); return items; } } } internal sealed class Mscorlib_DictionaryDebugView { private IDictionary dict; public Mscorlib_DictionaryDebugView(IDictionary dictionary) { if (dictionary == null) ThrowHelper.ThrowArgumentNullException(ExceptionArgument.dictionary); this.dict = dictionary; } [DebuggerBrowsable(DebuggerBrowsableState.RootHidden)] public KeyValuePair [] Items { get { KeyValuePair [] items = new KeyValuePair [dict.Count]; dict.CopyTo(items, 0); return items; } } } internal sealed class Mscorlib_KeyedCollectionDebugView { private KeyedCollection kc; public Mscorlib_KeyedCollectionDebugView(KeyedCollection keyedCollection) { if (keyedCollection == null) { throw new ArgumentNullException("keyedCollection"); } kc = keyedCollection; } [DebuggerBrowsable(DebuggerBrowsableState.RootHidden)] public T[] Items { get { T[] items = new T[kc.Count]; kc.CopyTo(items, 0); return items; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu
This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- DataControlField.cs
- SolidColorBrush.cs
- Helper.cs
- XmlSchemaObjectTable.cs
- ContentElementCollection.cs
- Win32KeyboardDevice.cs
- TextTreeNode.cs
- QueryStringConverter.cs
- PenThread.cs
- AppDomainAttributes.cs
- XmlDataFileEditor.cs
- Line.cs
- StorageScalarPropertyMapping.cs
- IIS7UserPrincipal.cs
- DomainUpDown.cs
- TypeSource.cs
- IIS7WorkerRequest.cs
- InvalidPrinterException.cs
- columnmapfactory.cs
- VolatileEnlistmentMultiplexing.cs
- SplashScreen.cs
- EventOpcode.cs
- ListViewItem.cs
- UserNamePasswordValidator.cs
- SelectionManager.cs
- ClientTargetCollection.cs
- SecurityContext.cs
- Int32AnimationBase.cs
- parserscommon.cs
- ModuleElement.cs
- UriScheme.cs
- OracleConnectionString.cs
- ProxyGenerationError.cs
- _SecureChannel.cs
- UpdateException.cs
- InheritedPropertyChangedEventArgs.cs
- EntityTransaction.cs
- ImageCodecInfo.cs
- RecommendedAsConfigurableAttribute.cs
- SignatureGenerator.cs
- MachineKey.cs
- ObjectConverter.cs
- VectorCollection.cs
- Menu.cs
- Message.cs
- UsernameTokenFactoryCredential.cs
- XamlReader.cs
- SingleTagSectionHandler.cs
- PageRouteHandler.cs
- RegionIterator.cs
- InstanceDescriptor.cs
- MasterPageParser.cs
- QueryCacheKey.cs
- MimePart.cs
- AssemblyUtil.cs
- MediaSystem.cs
- TypeUsageBuilder.cs
- Size3D.cs
- IndexOutOfRangeException.cs
- XamlNamespaceHelper.cs
- ActivityTypeCodeDomSerializer.cs
- DependentList.cs
- CompilationUnit.cs
- TemplateContent.cs
- SchemaManager.cs
- SizeLimitedCache.cs
- XmlSchemaAnnotation.cs
- TraceHelpers.cs
- StateMachineHelpers.cs
- XmlTypeMapping.cs
- ControlCollection.cs
- MultiDataTrigger.cs
- AudioException.cs
- CachedTypeface.cs
- ObjectTag.cs
- FileSystemInfo.cs
- ThreadExceptionDialog.cs
- IsolationInterop.cs
- Decoder.cs
- XmlBoundElement.cs
- StringTraceRecord.cs
- EntryPointNotFoundException.cs
- EngineSiteSapi.cs
- AggregateNode.cs
- MediaContext.cs
- ProcessModelSection.cs
- MetadataUtilsSmi.cs
- NumericUpDownAccelerationCollection.cs
- FormattedText.cs
- PageTheme.cs
- NonBatchDirectoryCompiler.cs
- IDQuery.cs
- XamlParser.cs
- XamlStyleSerializer.cs
- DataColumnMappingCollection.cs
- PackageController.cs
- EmptyStringExpandableObjectConverter.cs
- DataServiceSaveChangesEventArgs.cs
- PerformanceCounterPermissionAttribute.cs
- WorkflowInstance.cs