Code:
/ 4.0 / 4.0 / 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. // ==++== // // 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
- HttpResponseHeader.cs
- BinaryParser.cs
- SplitterCancelEvent.cs
- WebPartCancelEventArgs.cs
- ToolStripSplitButton.cs
- StylusDevice.cs
- DetailsViewRowCollection.cs
- FragmentQueryKB.cs
- XamlSerializer.cs
- Base64Decoder.cs
- BitStream.cs
- WebPartPersonalization.cs
- BinarySerializer.cs
- ListViewSortEventArgs.cs
- DesignerObjectListAdapter.cs
- Lease.cs
- IfAction.cs
- PropertyMapper.cs
- SegmentInfo.cs
- SqlVisitor.cs
- TextDecorationLocationValidation.cs
- Activity.cs
- Model3D.cs
- EventSourceCreationData.cs
- WindowsGraphicsWrapper.cs
- FixedNode.cs
- Script.cs
- TextTreeRootNode.cs
- GenericsInstances.cs
- PagerSettings.cs
- BitmapMetadataBlob.cs
- TableCell.cs
- GridViewRowPresenterBase.cs
- Point.cs
- RoutedUICommand.cs
- PreviewKeyDownEventArgs.cs
- ipaddressinformationcollection.cs
- BindStream.cs
- ImageUrlEditor.cs
- ExpandCollapsePattern.cs
- KeyedCollection.cs
- AssemblyAssociatedContentFileAttribute.cs
- SetState.cs
- WebBrowser.cs
- MessageQueuePermissionEntry.cs
- DbParameterCollectionHelper.cs
- ValueProviderWrapper.cs
- ArgumentException.cs
- SessionStateUtil.cs
- TraceUtils.cs
- StreamWithDictionary.cs
- ResponseStream.cs
- NamedElement.cs
- HwndTarget.cs
- SystemPens.cs
- TypeInitializationException.cs
- WeakReferenceKey.cs
- ZipIOExtraFieldZip64Element.cs
- CombinedGeometry.cs
- ExpressionBuilderCollection.cs
- WebPartMovingEventArgs.cs
- TabControl.cs
- Tile.cs
- filewebresponse.cs
- AsymmetricCryptoHandle.cs
- PolygonHotSpot.cs
- RepeaterCommandEventArgs.cs
- DataControlButton.cs
- MimePart.cs
- SoundPlayerAction.cs
- ContentElementAutomationPeer.cs
- PasswordPropertyTextAttribute.cs
- CompressEmulationStream.cs
- CompositeClientFormatter.cs
- HWStack.cs
- BinaryObjectWriter.cs
- SelectedDatesCollection.cs
- Atom10FormatterFactory.cs
- DirtyTextRange.cs
- HwndHost.cs
- ColumnResult.cs
- WebPartMenuStyle.cs
- XmlConverter.cs
- DataRecordObjectView.cs
- PagesSection.cs
- ResetableIterator.cs
- PhonemeEventArgs.cs
- HeaderCollection.cs
- ParseHttpDate.cs
- IdleTimeoutMonitor.cs
- Viewport3DVisual.cs
- HtmlControlPersistable.cs
- Condition.cs
- TextRangeEditTables.cs
- Root.cs
- SrgsToken.cs
- SchemaNamespaceManager.cs
- TogglePatternIdentifiers.cs
- DiscoveryMessageSequenceCD1.cs
- GradientStop.cs