Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / CompMod / System / Collections / Generic / DebugView.cs / 1 / 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(); } } } 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; } } } }
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- DataRelation.cs
- DispatcherTimer.cs
- HeaderCollection.cs
- DocumentSequence.cs
- ControlIdConverter.cs
- DataServiceHostWrapper.cs
- AssemblyFilter.cs
- PathParser.cs
- WindowPattern.cs
- ForwardPositionQuery.cs
- DtrList.cs
- JavascriptXmlWriterWrapper.cs
- MessageOperationFormatter.cs
- ConstraintEnumerator.cs
- NumberAction.cs
- ScrollChangedEventArgs.cs
- XPathDocument.cs
- XmlArrayAttribute.cs
- DWriteFactory.cs
- ByteViewer.cs
- BinaryMessageFormatter.cs
- PocoPropertyAccessorStrategy.cs
- InheritanceUI.cs
- Vertex.cs
- ByeMessage11.cs
- SqlGatherProducedAliases.cs
- PersonalizableTypeEntry.cs
- TransactionChannelListener.cs
- Viewport3DVisual.cs
- BitSet.cs
- SerializationSectionGroup.cs
- EntryWrittenEventArgs.cs
- SmtpCommands.cs
- HatchBrush.cs
- BlurBitmapEffect.cs
- SignatureToken.cs
- WebPartPersonalization.cs
- MimeTypePropertyAttribute.cs
- QfeChecker.cs
- SafeSystemMetrics.cs
- EventSourceCreationData.cs
- UInt64Converter.cs
- ProxyGenerationError.cs
- MorphHelpers.cs
- CompoundFileReference.cs
- Parameter.cs
- PreDigestedSignedInfo.cs
- ToolBarButton.cs
- SqlHelper.cs
- HttpApplicationFactory.cs
- HttpRequestBase.cs
- DbConnectionStringBuilder.cs
- ResourceManagerWrapper.cs
- DataGridBoolColumn.cs
- AttributeUsageAttribute.cs
- WebConfigurationFileMap.cs
- Utility.cs
- EventEntry.cs
- UserUseLicenseDictionaryLoader.cs
- SchemaNotation.cs
- UserControlCodeDomTreeGenerator.cs
- IPCCacheManager.cs
- PeerNameRegistration.cs
- datacache.cs
- DataListItem.cs
- TextChangedEventArgs.cs
- Sentence.cs
- Column.cs
- Label.cs
- ApplicationDirectory.cs
- Camera.cs
- HtmlElementErrorEventArgs.cs
- OleDbSchemaGuid.cs
- RequestCachePolicy.cs
- InputScope.cs
- X509SubjectKeyIdentifierClause.cs
- OracleCommandSet.cs
- OperationPickerDialog.designer.cs
- ThreadStaticAttribute.cs
- Literal.cs
- DataServiceConfiguration.cs
- DelimitedListTraceListener.cs
- ApplicationSecurityInfo.cs
- initElementDictionary.cs
- WindowsListView.cs
- AxisAngleRotation3D.cs
- ImageInfo.cs
- XmlHelper.cs
- PtsCache.cs
- RangeBaseAutomationPeer.cs
- Menu.cs
- TextTreeObjectNode.cs
- MultiAsyncResult.cs
- BitmapSource.cs
- _ReceiveMessageOverlappedAsyncResult.cs
- ResXBuildProvider.cs
- SmiTypedGetterSetter.cs
- Cursors.cs
- PermissionAttributes.cs
- ProcessProtocolHandler.cs