Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / CompMod / System / Collections / Generic / SortedSetDebugView.cs / 1305376 / SortedSetDebugView.cs
using System; using System.Collections; using System.Collections.Generic; using System.Diagnostics; using System.Text; namespace System.Collections.Generic { ////// Debug view for SortedSet /// ///internal class SortedSetDebugView { private SortedSet set; public SortedSetDebugView(SortedSet set) { if (set == null) { throw new ArgumentNullException("set"); } this.set = set; } [DebuggerBrowsable(DebuggerBrowsableState.RootHidden)] public T[] Items { get { return set.ToArray(); } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- TableLayoutSettingsTypeConverter.cs
- CqlLexer.cs
- TrustManagerMoreInformation.cs
- AxWrapperGen.cs
- TrustManagerMoreInformation.cs
- TagMapCollection.cs
- ReadOnlyDataSourceView.cs
- DesignerAttribute.cs
- DbDataReader.cs
- SqlStatistics.cs
- CacheMemory.cs
- DisplayMemberTemplateSelector.cs
- CharUnicodeInfo.cs
- PropertyPushdownHelper.cs
- ActionFrame.cs
- FlowDocumentView.cs
- processwaithandle.cs
- PreProcessor.cs
- IgnoreFlushAndCloseStream.cs
- HyperLinkField.cs
- CorrelationResolver.cs
- CqlIdentifiers.cs
- ConnectionStringsExpressionBuilder.cs
- LocalizationParserHooks.cs
- ClientConfigurationHost.cs
- ServerValidateEventArgs.cs
- List.cs
- WmpBitmapEncoder.cs
- Stroke.cs
- CompilerParameters.cs
- WebScriptEndpoint.cs
- SemaphoreSlim.cs
- PerformanceCounterPermissionAttribute.cs
- XmlSchemaImport.cs
- ConnectionStringSettingsCollection.cs
- HttpStreamMessage.cs
- Compiler.cs
- InkCanvasAutomationPeer.cs
- wgx_exports.cs
- SpotLight.cs
- KeyboardNavigation.cs
- Random.cs
- QuotedStringFormatReader.cs
- RuntimeResourceSet.cs
- CornerRadiusConverter.cs
- DataRowChangeEvent.cs
- ChangesetResponse.cs
- MediaTimeline.cs
- ISAPIWorkerRequest.cs
- IisTraceListener.cs
- XmlDocumentSerializer.cs
- SqlVersion.cs
- XmlNavigatorFilter.cs
- CodeStatementCollection.cs
- DataGridItem.cs
- EntitySqlQueryState.cs
- DebugView.cs
- SafeMemoryMappedViewHandle.cs
- WindowsFont.cs
- ThrowHelper.cs
- TypeDependencyAttribute.cs
- WinInet.cs
- ArithmeticException.cs
- util.cs
- AmbientValueAttribute.cs
- ItemCollection.cs
- BoundPropertyEntry.cs
- SmiMetaDataProperty.cs
- TablePattern.cs
- PixelShader.cs
- Stroke.cs
- WinEventQueueItem.cs
- unsafeIndexingFilterStream.cs
- Transform.cs
- sapiproxy.cs
- BitmapSizeOptions.cs
- XPathAncestorIterator.cs
- CultureInfoConverter.cs
- TrackBarRenderer.cs
- ColorDialog.cs
- Int32Rect.cs
- TargetParameterCountException.cs
- StorageMappingItemCollection.cs
- ReliableSessionElement.cs
- HttpApplication.cs
- SqlServer2KCompatibilityAnnotation.cs
- ECDsa.cs
- FileDialog.cs
- SqlDataAdapter.cs
- CodeLabeledStatement.cs
- InputLanguage.cs
- Hashtable.cs
- InputLanguageManager.cs
- DocumentCollection.cs
- StatusBarDesigner.cs
- SqlUDTStorage.cs
- SiteMapNodeItemEventArgs.cs
- NonPrimarySelectionGlyph.cs
- AnonymousIdentificationModule.cs
- TextSyndicationContentKindHelper.cs