Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / 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
- SecurityMessageProperty.cs
- X509PeerCertificateAuthenticationElement.cs
- X509Utils.cs
- DefinitionBase.cs
- InternalResources.cs
- QueryableFilterRepeater.cs
- FrameworkElementFactoryMarkupObject.cs
- ControlFilterExpression.cs
- ToolStripItemClickedEventArgs.cs
- VectorAnimationBase.cs
- RowCache.cs
- PageContent.cs
- XmlObjectSerializerContext.cs
- ECDiffieHellmanCng.cs
- HttpListenerException.cs
- MSAANativeProvider.cs
- InvalidTimeZoneException.cs
- PathTooLongException.cs
- DateTime.cs
- odbcmetadatafactory.cs
- TreeChangeInfo.cs
- EmissiveMaterial.cs
- PropertySegmentSerializationProvider.cs
- PropertyItemInternal.cs
- ZoneButton.cs
- TypeBuilder.cs
- PartitionedStream.cs
- GroupItemAutomationPeer.cs
- BitmapFrameDecode.cs
- SqlUserDefinedTypeAttribute.cs
- OracleBFile.cs
- RedirectionProxy.cs
- WCFBuildProvider.cs
- ThicknessAnimationBase.cs
- ZipPackage.cs
- DataColumnChangeEvent.cs
- DataGridViewRowConverter.cs
- ClientConvert.cs
- OpenTypeMethods.cs
- PerformanceCounterLib.cs
- RenderOptions.cs
- SmtpFailedRecipientsException.cs
- QilSortKey.cs
- StringConcat.cs
- RadioButtonBaseAdapter.cs
- XmlILTrace.cs
- ServiceOperation.cs
- XPathEmptyIterator.cs
- OverrideMode.cs
- MsmqTransportSecurity.cs
- SHA256Cng.cs
- HitTestResult.cs
- ObjectReaderCompiler.cs
- PaintValueEventArgs.cs
- RequestUriProcessor.cs
- BinaryCommonClasses.cs
- DataGridViewCellCollection.cs
- PolyLineSegment.cs
- MultiBinding.cs
- Model3DCollection.cs
- GcSettings.cs
- RelationshipNavigation.cs
- MenuItemStyleCollectionEditor.cs
- RangeValuePattern.cs
- ColorTranslator.cs
- ConnectionManagementElement.cs
- WebPartEditorApplyVerb.cs
- SqlDataRecord.cs
- DataGridColumn.cs
- CancelEventArgs.cs
- AsyncSerializedWorker.cs
- DataTableTypeConverter.cs
- HwndSourceKeyboardInputSite.cs
- RoutingExtension.cs
- UrlPropertyAttribute.cs
- XPathNavigatorKeyComparer.cs
- ResourceDictionary.cs
- XDeferredAxisSource.cs
- EpmCustomContentDeSerializer.cs
- ScriptReferenceEventArgs.cs
- Tokenizer.cs
- EnumerableRowCollection.cs
- GradientBrush.cs
- ObjectStateEntryDbUpdatableDataRecord.cs
- ThrowOnMultipleAssignment.cs
- UnsafeNativeMethods.cs
- ClockController.cs
- PageCatalogPart.cs
- PersonalizationAdministration.cs
- TcpProcessProtocolHandler.cs
- IdentitySection.cs
- OrderedDictionary.cs
- VisualTreeHelper.cs
- HttpResponse.cs
- LineGeometry.cs
- SecurityProtocolCorrelationState.cs
- SecondaryIndexList.cs
- XmlCompatibilityReader.cs
- XmlSchemaParticle.cs
- TreeViewItemAutomationPeer.cs