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
- ProtocolsConfiguration.cs
- ParenthesizePropertyNameAttribute.cs
- SafeRightsManagementEnvironmentHandle.cs
- HtmlImage.cs
- SafeNativeMethodsCLR.cs
- PassportAuthenticationModule.cs
- SqlExpander.cs
- CodeDomLoader.cs
- RichTextBox.cs
- ImageSource.cs
- OLEDB_Util.cs
- AsyncResult.cs
- SqlErrorCollection.cs
- XomlSerializationHelpers.cs
- PreviousTrackingServiceAttribute.cs
- MessageSecurityVersion.cs
- BaseDataBoundControl.cs
- Model3DCollection.cs
- SAPICategories.cs
- DataControlFieldHeaderCell.cs
- SafeProcessHandle.cs
- Vector3dCollection.cs
- NumericUpDownAcceleration.cs
- Accessors.cs
- CallbackValidator.cs
- EUCJPEncoding.cs
- ContentDesigner.cs
- PbrsForward.cs
- AuthenticationSection.cs
- XmlSchemaObjectCollection.cs
- ClientSettings.cs
- ResourceManager.cs
- ConfigurationValue.cs
- RelationHandler.cs
- ShadowGlyph.cs
- PeekCompletedEventArgs.cs
- DomainConstraint.cs
- DebuggerAttributes.cs
- XmlDocumentFragment.cs
- DataSourceGeneratorException.cs
- EventProviderWriter.cs
- MsmqDecodeHelper.cs
- UIElementIsland.cs
- EndPoint.cs
- ReadContentAsBinaryHelper.cs
- ModuleElement.cs
- PassportAuthentication.cs
- DynamicValidatorEventArgs.cs
- CodeStatement.cs
- ManualResetEvent.cs
- HostedElements.cs
- SqlFlattener.cs
- OdbcEnvironmentHandle.cs
- StringKeyFrameCollection.cs
- OleDbException.cs
- MemberPath.cs
- XmlNode.cs
- BitHelper.cs
- KeyValueConfigurationElement.cs
- ImageClickEventArgs.cs
- CodeMethodReturnStatement.cs
- SecurityUtils.cs
- SelectionManager.cs
- SafeMILHandle.cs
- ProviderBase.cs
- NavigationCommands.cs
- JsonServiceDocumentSerializer.cs
- XmlSchemaParticle.cs
- Fx.cs
- CannotUnloadAppDomainException.cs
- DateTimeParse.cs
- UpdateCompiler.cs
- ClientOptions.cs
- SyncOperationState.cs
- ObjectStateEntryDbUpdatableDataRecord.cs
- DataGridAutoGeneratingColumnEventArgs.cs
- FormsAuthenticationConfiguration.cs
- QilTypeChecker.cs
- ObjectStateManagerMetadata.cs
- _NativeSSPI.cs
- CallSiteBinder.cs
- TypeConstant.cs
- FontStyle.cs
- DataKeyArray.cs
- DesignerCategoryAttribute.cs
- EncoderReplacementFallback.cs
- InProcStateClientManager.cs
- SimpleTypesSurrogate.cs
- WebPartAddingEventArgs.cs
- BackgroundFormatInfo.cs
- TextOutput.cs
- ObjectDataSource.cs
- DoubleLink.cs
- RenderOptions.cs
- ChannelPool.cs
- _ListenerAsyncResult.cs
- ColumnWidthChangedEvent.cs
- RichTextBoxConstants.cs
- DataSetUtil.cs
- HttpListenerPrefixCollection.cs