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
- EnumValAlphaComparer.cs
- Transform.cs
- DataGridViewButtonColumn.cs
- MULTI_QI.cs
- SQLStringStorage.cs
- TreeIterator.cs
- ReferentialConstraint.cs
- FormatConvertedBitmap.cs
- MachineKeySection.cs
- EntityCommandExecutionException.cs
- Array.cs
- OdbcRowUpdatingEvent.cs
- GenericUI.cs
- FilteredDataSetHelper.cs
- UnsafeNativeMethodsMilCoreApi.cs
- TextServicesManager.cs
- ColorConvertedBitmap.cs
- SafeFreeMibTable.cs
- PartialList.cs
- RegexMatch.cs
- Baml2006ReaderFrame.cs
- BlurBitmapEffect.cs
- XmlSchemaElement.cs
- ProvidePropertyAttribute.cs
- SqlTransaction.cs
- TemplateKey.cs
- GenericAuthenticationEventArgs.cs
- SafeLibraryHandle.cs
- LocalizeDesigner.cs
- EntityContainer.cs
- DbgCompiler.cs
- FormatterConverter.cs
- HttpRuntimeSection.cs
- DateTimeConstantAttribute.cs
- MenuItemBindingCollection.cs
- ControlValuePropertyAttribute.cs
- IOException.cs
- regiisutil.cs
- XhtmlTextWriter.cs
- ModelItemDictionaryImpl.cs
- MLangCodePageEncoding.cs
- LocatorManager.cs
- ForeignKeyConstraint.cs
- SerialErrors.cs
- StorageTypeMapping.cs
- BindingUtils.cs
- AnnotationHelper.cs
- XmlNodeComparer.cs
- GridPattern.cs
- DocumentXmlWriter.cs
- TreeNodeStyleCollection.cs
- Timeline.cs
- SBCSCodePageEncoding.cs
- CultureSpecificCharacterBufferRange.cs
- CorruptingExceptionCommon.cs
- CharEntityEncoderFallback.cs
- ColorAnimation.cs
- WinInetCache.cs
- CalendarModeChangedEventArgs.cs
- WebConfigurationFileMap.cs
- FileSystemWatcher.cs
- SystemInfo.cs
- IdentityNotMappedException.cs
- FrameworkElementFactoryMarkupObject.cs
- LicenseProviderAttribute.cs
- WpfPayload.cs
- BatchParser.cs
- HwndSource.cs
- Vector3DKeyFrameCollection.cs
- DataBinder.cs
- SerialReceived.cs
- CorrelationManager.cs
- EventRoute.cs
- DependencySource.cs
- URI.cs
- ComplexTypeEmitter.cs
- CodeArgumentReferenceExpression.cs
- ADMembershipUser.cs
- figurelength.cs
- CacheMemory.cs
- PriorityItem.cs
- ProvidePropertyAttribute.cs
- HostProtectionPermission.cs
- RuleInfoComparer.cs
- SoapHeaders.cs
- TransformedBitmap.cs
- SqlAliasesReferenced.cs
- ProcessModelInfo.cs
- ListViewDeleteEventArgs.cs
- objectquery_tresulttype.cs
- oledbmetadatacolumnnames.cs
- TextBoxBase.cs
- Ipv6Element.cs
- PrimitiveList.cs
- SafeHandle.cs
- DesignerAttribute.cs
- ErrorProvider.cs
- Crc32Helper.cs
- Stylus.cs
- SafeNativeMethods.cs