Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / clr / src / BCL / System / Collections / Generic / DebugView.cs / 1305376 / 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; using System.Diagnostics.Contracts; // // 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"); } Contract.EndContractBlock(); 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; using System.Diagnostics.Contracts; // // 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"); } Contract.EndContractBlock(); 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
- HandleCollector.cs
- MetadataArtifactLoaderXmlReaderWrapper.cs
- LinqDataSourceInsertEventArgs.cs
- RequestContext.cs
- ListManagerBindingsCollection.cs
- FirstMatchCodeGroup.cs
- TextSerializer.cs
- ArglessEventHandlerProxy.cs
- CodeLabeledStatement.cs
- Int64.cs
- LoadedOrUnloadedOperation.cs
- SQLInt16.cs
- FormatterConverter.cs
- ByteAnimationUsingKeyFrames.cs
- OAVariantLib.cs
- Graph.cs
- MemberJoinTreeNode.cs
- Vector3DConverter.cs
- AtomServiceDocumentSerializer.cs
- RectangleGeometry.cs
- DbProviderFactoriesConfigurationHandler.cs
- DesignTimeResourceProviderFactoryAttribute.cs
- QuaternionAnimationBase.cs
- ListBoxItemWrapperAutomationPeer.cs
- Decoder.cs
- HtmlElement.cs
- DataGridViewComboBoxColumn.cs
- LineUtil.cs
- Binding.cs
- Models.cs
- XmlDataSource.cs
- ListDictionary.cs
- OSFeature.cs
- Aes.cs
- Misc.cs
- PeerNameResolver.cs
- RegexWriter.cs
- EncoderNLS.cs
- COMException.cs
- ExternalFile.cs
- ActiveXContainer.cs
- DataContractSerializer.cs
- Int32.cs
- Int32RectConverter.cs
- XdrBuilder.cs
- CollectionViewSource.cs
- WebScriptServiceHostFactory.cs
- LocalizedNameDescriptionPair.cs
- XamlReader.cs
- TabPage.cs
- AsyncCodeActivity.cs
- SortExpressionBuilder.cs
- ComponentChangingEvent.cs
- RTLAwareMessageBox.cs
- XmlAtomicValue.cs
- Splitter.cs
- CompositionAdorner.cs
- DataBinding.cs
- OdbcDataReader.cs
- PropertiesTab.cs
- EnlistmentState.cs
- WorkflowServiceOperationListItem.cs
- DataRowView.cs
- CryptoKeySecurity.cs
- SqlBuffer.cs
- CacheDependency.cs
- TrackPoint.cs
- XmlSerializerAssemblyAttribute.cs
- MetadataUtil.cs
- UnsafeNativeMethodsCLR.cs
- ValidationContext.cs
- MouseButton.cs
- HiddenFieldPageStatePersister.cs
- FontWeightConverter.cs
- ValueTypeFixupInfo.cs
- ImageAnimator.cs
- RequestCacheEntry.cs
- DataGridHeaderBorder.cs
- ExpressionNormalizer.cs
- NotImplementedException.cs
- FileDialogCustomPlacesCollection.cs
- HitTestFilterBehavior.cs
- StringConverter.cs
- EntitySqlQueryBuilder.cs
- WindowCollection.cs
- AttachInfo.cs
- Thickness.cs
- Style.cs
- UriWriter.cs
- CharacterMetrics.cs
- SqlStatistics.cs
- ResourcesBuildProvider.cs
- SqlConnection.cs
- SdlChannelSink.cs
- ListChunk.cs
- RightsManagementPermission.cs
- BaseTemplateParser.cs
- RequiredFieldValidator.cs
- ThemeableAttribute.cs
- SizeAnimationClockResource.cs