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
- HtmlElementErrorEventArgs.cs
- LinqDataSourceUpdateEventArgs.cs
- TextDecorationCollection.cs
- ClientConfigurationHost.cs
- SoapReflectionImporter.cs
- TreeViewHitTestInfo.cs
- DocumentOrderQuery.cs
- UnmanagedMemoryAccessor.cs
- mediapermission.cs
- AppModelKnownContentFactory.cs
- xml.cs
- OrderByBuilder.cs
- PageBuildProvider.cs
- DataGridViewSelectedCellCollection.cs
- RegisteredHiddenField.cs
- AudioSignalProblemOccurredEventArgs.cs
- ItemList.cs
- DataViewSetting.cs
- ServiceErrorHandler.cs
- EventSourceCreationData.cs
- BooleanKeyFrameCollection.cs
- SimpleWorkerRequest.cs
- KerberosReceiverSecurityToken.cs
- PingReply.cs
- RegionInfo.cs
- MessageQueueTransaction.cs
- BamlReader.cs
- SHA512.cs
- HttpRequestCacheValidator.cs
- PageScaling.cs
- BinaryFormatterWriter.cs
- ClientOperationFormatterProvider.cs
- RequestUriProcessor.cs
- Accessible.cs
- MatrixTransform3D.cs
- ADMembershipUser.cs
- KeyedHashAlgorithm.cs
- KoreanLunisolarCalendar.cs
- TrackingServices.cs
- HttpListenerContext.cs
- OpenFileDialog.cs
- AssertUtility.cs
- MarginCollapsingState.cs
- ConnectionManagementElementCollection.cs
- ConversionContext.cs
- ScalarOps.cs
- SerialPort.cs
- GradientStop.cs
- IImplicitResourceProvider.cs
- ListViewItemMouseHoverEvent.cs
- ProfileSection.cs
- CharacterBufferReference.cs
- ConsumerConnectionPointCollection.cs
- AssemblyResourceLoader.cs
- StyleSelector.cs
- ActivationServices.cs
- SqlRewriteScalarSubqueries.cs
- HasCopySemanticsAttribute.cs
- Queue.cs
- EndpointAddressElementBase.cs
- Keywords.cs
- DataGridViewColumnCollection.cs
- EdmPropertyAttribute.cs
- DispatchWrapper.cs
- InkPresenterAutomationPeer.cs
- AxWrapperGen.cs
- CommandExpr.cs
- UInt32.cs
- WindowsSpinner.cs
- metadatamappinghashervisitor.hashsourcebuilder.cs
- StrokeIntersection.cs
- Events.cs
- CodeNamespaceImport.cs
- TemplatedMailWebEventProvider.cs
- MappingSource.cs
- PersonalizationEntry.cs
- StandardOleMarshalObject.cs
- ViewRendering.cs
- OleDbMetaDataFactory.cs
- ResourceLoader.cs
- GuidConverter.cs
- FormatConvertedBitmap.cs
- ConfigurationLocationCollection.cs
- RegexCompilationInfo.cs
- DataTableExtensions.cs
- FormViewInsertEventArgs.cs
- ArrayList.cs
- followingquery.cs
- ThemeableAttribute.cs
- Encoder.cs
- NavigationPropertySingletonExpression.cs
- Scene3D.cs
- CodeExpressionStatement.cs
- validation.cs
- XmlTextAttribute.cs
- RootNamespaceAttribute.cs
- PolicyManager.cs
- ClientApiGenerator.cs
- AnnotationResource.cs
- LogSwitch.cs