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
- NegatedCellConstant.cs
- MgmtConfigurationRecord.cs
- ExpressionCopier.cs
- VisualTarget.cs
- EntityCommandExecutionException.cs
- DataFormat.cs
- HttpCapabilitiesSectionHandler.cs
- MemberDescriptor.cs
- OutOfMemoryException.cs
- DecoratedNameAttribute.cs
- SingleObjectCollection.cs
- connectionpool.cs
- EdmItemError.cs
- XmlUtil.cs
- DataObjectPastingEventArgs.cs
- EmptyCollection.cs
- ChannelFactory.cs
- BaseResourcesBuildProvider.cs
- PostBackTrigger.cs
- TraceSection.cs
- LongValidatorAttribute.cs
- ComponentManagerBroker.cs
- ModelItemKeyValuePair.cs
- StrongName.cs
- WebPartTransformerAttribute.cs
- EventDriven.cs
- BuildDependencySet.cs
- ExpressionEvaluator.cs
- WorkflowServiceBuildProvider.cs
- AssemblyUtil.cs
- DataGridViewColumnConverter.cs
- XmlCountingReader.cs
- DbConnectionInternal.cs
- SchemaMapping.cs
- FormDocumentDesigner.cs
- TextRunTypographyProperties.cs
- CalendarAutoFormatDialog.cs
- NullableBoolConverter.cs
- EditableRegion.cs
- Translator.cs
- ProcessHostServerConfig.cs
- DomainUpDown.cs
- MdiWindowListItemConverter.cs
- GacUtil.cs
- BaseCollection.cs
- Pens.cs
- PersonalizationAdministration.cs
- ProfileProvider.cs
- CallbackValidator.cs
- InstalledFontCollection.cs
- TraceUtils.cs
- ChannelServices.cs
- CharacterBuffer.cs
- MenuCommands.cs
- OracleRowUpdatedEventArgs.cs
- WebServiceEnumData.cs
- SigningCredentials.cs
- ExecutionEngineException.cs
- Transform3DCollection.cs
- WebConfigurationFileMap.cs
- EraserBehavior.cs
- ProxySimple.cs
- CacheHelper.cs
- MessageDecoder.cs
- OpCellTreeNode.cs
- Stream.cs
- StructuredType.cs
- WebServiceData.cs
- ExtendedPropertyCollection.cs
- AppDomainUnloadedException.cs
- coordinatorscratchpad.cs
- PeerEndPoint.cs
- StrictModeSecurityHeaderElementInferenceEngine.cs
- TrailingSpaceComparer.cs
- IImplicitResourceProvider.cs
- DropShadowEffect.cs
- Overlapped.cs
- ActivityExecutionWorkItem.cs
- TableLayoutCellPaintEventArgs.cs
- SequenceDesignerAccessibleObject.cs
- DbConnectionStringBuilder.cs
- ContentControl.cs
- XmlEntityReference.cs
- ValidatorUtils.cs
- Int32Animation.cs
- DataGridColumnHeadersPresenter.cs
- UnmanagedMemoryStreamWrapper.cs
- TextLineBreak.cs
- PersonalizationStateQuery.cs
- Int64Converter.cs
- DocumentOrderQuery.cs
- CryptoHandle.cs
- OdbcInfoMessageEvent.cs
- DbMetaDataColumnNames.cs
- IOThreadScheduler.cs
- JapaneseLunisolarCalendar.cs
- ScrollBar.cs
- ListViewVirtualItemsSelectionRangeChangedEvent.cs
- ClientFormsIdentity.cs
- Cursors.cs