Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / CompMod / System / Collections / Generic / DebugView.cs / 1305376 / DebugView.cs
// ==++== // // Copyright (c) Microsoft Corporation. All rights reserved. // // ==--== /*============================================================================== ** ** ** ** Purpose: DebugView class for generic collections ** ** Date: Mar 09, 2004 ** =============================================================================*/ namespace System.Collections.Generic { using System; using System.Security.Permissions; using System.Diagnostics; internal sealed class System_CollectionDebugView{ private ICollection collection; public System_CollectionDebugView(ICollection collection) { if (collection == null) { throw new ArgumentNullException("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 System_QueueDebugView { private Queue queue; public System_QueueDebugView(Queue queue) { if (queue == null) { throw new ArgumentNullException("queue"); } this.queue = queue; } [DebuggerBrowsable(DebuggerBrowsableState.RootHidden)] public T[] Items { get { return queue.ToArray(); } } } internal sealed class System_StackDebugView { private Stack stack; public System_StackDebugView(Stack stack) { if (stack == null) { throw new ArgumentNullException("stack"); } this.stack = stack; } [DebuggerBrowsable(DebuggerBrowsableState.RootHidden)] public T[] Items { get { return stack.ToArray(); } } } #if !SILVERLIGHT internal sealed class System_DictionaryDebugView { private IDictionary dict; public System_DictionaryDebugView(IDictionary dictionary) { if (dictionary == null) throw new ArgumentNullException("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 System_DictionaryKeyCollectionDebugView { private ICollection collection; public System_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 System_DictionaryValueCollectionDebugView { private ICollection collection; public System_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; } } } #endif // !SILVERLIGHT } // 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
- KeyValueInternalCollection.cs
- Facet.cs
- InplaceBitmapMetadataWriter.cs
- baseshape.cs
- XmlNodeList.cs
- DataTrigger.cs
- WindowsFormsSynchronizationContext.cs
- GridViewColumnHeaderAutomationPeer.cs
- List.cs
- RuleSetDialog.Designer.cs
- StorageSetMapping.cs
- ModelTypeConverter.cs
- MethodBuilderInstantiation.cs
- ISAPIApplicationHost.cs
- ObservableCollection.cs
- XmlElementAttributes.cs
- COM2Properties.cs
- ApplicationFileCodeDomTreeGenerator.cs
- ClientTarget.cs
- CounterCreationData.cs
- BindingBase.cs
- ResolveNameEventArgs.cs
- GetReadStreamResult.cs
- ClientRuntimeConfig.cs
- BuildManager.cs
- Vars.cs
- IApplicationTrustManager.cs
- PixelFormats.cs
- ListControl.cs
- DataGridColumnHeader.cs
- LicFileLicenseProvider.cs
- Propagator.cs
- CompilerScope.cs
- SyndicationSerializer.cs
- HashMembershipCondition.cs
- TextEditorMouse.cs
- SystemInfo.cs
- RequestCacheValidator.cs
- Privilege.cs
- DispatcherFrame.cs
- SelectedDatesCollection.cs
- PublisherMembershipCondition.cs
- OrderedDictionary.cs
- DesignParameter.cs
- PointConverter.cs
- ElementInit.cs
- CompositeCollectionView.cs
- LayoutDump.cs
- ToolStripDropDown.cs
- PointIndependentAnimationStorage.cs
- tibetanshape.cs
- SendKeys.cs
- LocalizableAttribute.cs
- LogSwitch.cs
- _DisconnectOverlappedAsyncResult.cs
- LocalIdKeyIdentifierClause.cs
- LayoutEvent.cs
- SQLInt64Storage.cs
- srgsitem.cs
- SystemResources.cs
- XmlLinkedNode.cs
- SystemIPInterfaceStatistics.cs
- DocumentPageViewAutomationPeer.cs
- SessionIDManager.cs
- DependencyObject.cs
- UriTemplateHelpers.cs
- RowBinding.cs
- FtpCachePolicyElement.cs
- TableDetailsRow.cs
- RegexStringValidator.cs
- XmlSerializerAssemblyAttribute.cs
- FramingChannels.cs
- RangeValueProviderWrapper.cs
- DataGridBoolColumn.cs
- ModelPropertyDescriptor.cs
- TreeNodeEventArgs.cs
- UpdateCommand.cs
- SSmlParser.cs
- ToolStripSplitButton.cs
- IpcManager.cs
- TlsnegoTokenAuthenticator.cs
- WsatRegistrationHeader.cs
- ListItem.cs
- MetadataUtilsSmi.cs
- UmAlQuraCalendar.cs
- EntityDataSourceUtil.cs
- QueryAccessibilityHelpEvent.cs
- DotExpr.cs
- CommonDialog.cs
- TypeLibConverter.cs
- Errors.cs
- ProxyElement.cs
- PixelShader.cs
- StrokeIntersection.cs
- GroupBox.cs
- QueryableDataSourceHelper.cs
- FormCollection.cs
- WorkflowInstance.cs
- WindowsFormsSynchronizationContext.cs
- __Filters.cs