Code:
/ 4.0 / 4.0 / 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. 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
- Context.cs
- BamlReader.cs
- SafeProcessHandle.cs
- ComponentResourceKey.cs
- PropertyValueUIItem.cs
- CounterSetInstanceCounterDataSet.cs
- OleDbPropertySetGuid.cs
- CompilerParameters.cs
- TextCompositionEventArgs.cs
- PlanCompilerUtil.cs
- SpellerHighlightLayer.cs
- ProcessHostServerConfig.cs
- TextAdaptor.cs
- TableRowCollection.cs
- DataTable.cs
- ResourceAssociationTypeEnd.cs
- Encoding.cs
- BinaryWriter.cs
- FormViewInsertedEventArgs.cs
- Point3DValueSerializer.cs
- GlyphRunDrawing.cs
- StrokeCollection.cs
- TrackingProfileDeserializationException.cs
- SessionSwitchEventArgs.cs
- ScriptControlDescriptor.cs
- ItemMap.cs
- DelegateCompletionCallbackWrapper.cs
- WindowsRebar.cs
- Crc32.cs
- ValidationError.cs
- CompressStream.cs
- Send.cs
- IsolationInterop.cs
- DurableOperationContext.cs
- LinqDataSourceValidationException.cs
- DataGridViewRowsAddedEventArgs.cs
- TableHeaderCell.cs
- Conditional.cs
- WebPartTransformerAttribute.cs
- TiffBitmapDecoder.cs
- SelfIssuedAuthRSAPKCS1SignatureDeformatter.cs
- Timer.cs
- AssemblyBuilder.cs
- ApplicationManager.cs
- BindingMemberInfo.cs
- XmlElement.cs
- X509Utils.cs
- CachingHintValidation.cs
- KeyboardEventArgs.cs
- FieldTemplateUserControl.cs
- EncryptedType.cs
- ScriptManager.cs
- WrappedKeySecurityToken.cs
- ProxyAttribute.cs
- ConfigurationHelpers.cs
- ObjectQueryExecutionPlan.cs
- WebBrowsableAttribute.cs
- HandledMouseEvent.cs
- KeyValueSerializer.cs
- CustomValidator.cs
- EditorPart.cs
- ObjectToken.cs
- ExtendedPropertyInfo.cs
- CompoundFileStorageReference.cs
- OutOfProcStateClientManager.cs
- QilExpression.cs
- ConfigurationPropertyCollection.cs
- TransportContext.cs
- Win32MouseDevice.cs
- RegexCompiler.cs
- BitmapFrameDecode.cs
- ManipulationCompletedEventArgs.cs
- PropertyMap.cs
- SerialPort.cs
- Int16AnimationBase.cs
- NTAccount.cs
- VariableQuery.cs
- DragEvent.cs
- ObjectStateManagerMetadata.cs
- ChildDocumentBlock.cs
- XPathEmptyIterator.cs
- GacUtil.cs
- RequiredFieldValidator.cs
- ExternalDataExchangeClient.cs
- DataGridViewComboBoxEditingControl.cs
- RelatedCurrencyManager.cs
- ObjectRef.cs
- AccessKeyManager.cs
- DataGridAutomationPeer.cs
- SettingsSection.cs
- CTreeGenerator.cs
- QueryStringParameter.cs
- JoinElimination.cs
- QueryGeneratorBase.cs
- StatusBarItemAutomationPeer.cs
- DataGridHeaderBorder.cs
- OrthographicCamera.cs
- HtmlInputSubmit.cs
- EditorPart.cs
- AuthenticatingEventArgs.cs