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
- DesignerTextViewAdapter.cs
- UriParserTemplates.cs
- Query.cs
- EntryIndex.cs
- Boolean.cs
- ReadOnlyCollection.cs
- ParseNumbers.cs
- MatrixValueSerializer.cs
- FillErrorEventArgs.cs
- PeerNearMe.cs
- TransformCollection.cs
- ListSortDescription.cs
- ProxyGenerationError.cs
- HttpApplicationFactory.cs
- MissingMemberException.cs
- MetadataException.cs
- AdjustableArrowCap.cs
- ClipboardProcessor.cs
- ColorTransformHelper.cs
- SafePointer.cs
- DataConnectionHelper.cs
- BitmapCacheBrush.cs
- SimpleBitVector32.cs
- DiscoveryDocumentSerializer.cs
- HierarchicalDataSourceControl.cs
- XmlElementList.cs
- ColumnReorderedEventArgs.cs
- UrlMappingCollection.cs
- GridViewRowPresenterBase.cs
- BinaryCommonClasses.cs
- RangeValidator.cs
- PreviewPageInfo.cs
- MetadataItemEmitter.cs
- SynchronizationContextHelper.cs
- CallbackValidator.cs
- ExeConfigurationFileMap.cs
- TextTreeNode.cs
- PersonalizationStateInfoCollection.cs
- DeploymentExceptionMapper.cs
- TreeNode.cs
- HtmlElementErrorEventArgs.cs
- x509store.cs
- FontUnitConverter.cs
- ISO2022Encoding.cs
- PackageDigitalSignatureManager.cs
- GenericXmlSecurityToken.cs
- OLEDB_Enum.cs
- ParserContext.cs
- DiscoveryMessageSequenceGenerator.cs
- RegexInterpreter.cs
- NullableIntMinMaxAggregationOperator.cs
- DataGridRow.cs
- DependencyPropertyAttribute.cs
- HttpInputStream.cs
- XXXOnTypeBuilderInstantiation.cs
- WebPartTransformerCollection.cs
- MappingSource.cs
- BridgeDataReader.cs
- ChannelDemuxer.cs
- FormsAuthenticationTicket.cs
- IntegrationExceptionEventArgs.cs
- CodeDesigner.cs
- SiteIdentityPermission.cs
- ObsoleteAttribute.cs
- ImageUrlEditor.cs
- HotSpotCollectionEditor.cs
- BinaryReader.cs
- PrintDialog.cs
- followingquery.cs
- AttributeAction.cs
- ParameterCollectionEditorForm.cs
- WebPartZoneBase.cs
- PeerCollaboration.cs
- WebServiceHost.cs
- UpdateCompiler.cs
- Aggregates.cs
- Main.cs
- BulletChrome.cs
- EmbeddedMailObjectsCollection.cs
- MailBnfHelper.cs
- StylusPointProperties.cs
- MergeFilterQuery.cs
- BuilderPropertyEntry.cs
- ImageList.cs
- QueryOutputWriterV1.cs
- ToolTipAutomationPeer.cs
- FSWPathEditor.cs
- ConstrainedDataObject.cs
- NumericPagerField.cs
- SchemaElement.cs
- ThreadAttributes.cs
- XsltArgumentList.cs
- ConfigUtil.cs
- GridViewRow.cs
- DependencyObject.cs
- WorkflowServiceOperationListItem.cs
- TextMarkerSource.cs
- RegexCaptureCollection.cs
- HighlightComponent.cs
- BamlLocalizableResource.cs