Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / clr / src / BCL / System / Collections / KeyValuePairs.cs / 1 / KeyValuePairs.cs
// ==++== // // Copyright (c) Microsoft Corporation. All rights reserved. // // ==--== /*============================================================ ** ** Class: KeyValuePairs ** ** ** Purpose: KeyValuePairs to display items in collection class under debugger ** ** ===========================================================*/ namespace System.Collections { using System.Diagnostics; [DebuggerDisplay("{value}", Name = "[{key}]", Type = "" )] internal class KeyValuePairs { [DebuggerBrowsable(DebuggerBrowsableState.Never)] private object key; [DebuggerBrowsable(DebuggerBrowsableState.Never)] private object value; public KeyValuePairs(object key, object value) { this.value = value; this.key = key; } public object Key { get { return key; } } public object Value { get { return value; } } } }
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ItemType.cs
- _FtpControlStream.cs
- IChannel.cs
- SingletonConnectionReader.cs
- InteropExecutor.cs
- PersonalizableAttribute.cs
- ListParaClient.cs
- SecurityPermission.cs
- ChildrenQuery.cs
- DbMetaDataFactory.cs
- SQLCharsStorage.cs
- DBBindings.cs
- EnumerableValidator.cs
- DescriptionAttribute.cs
- PageCodeDomTreeGenerator.cs
- ToolBarOverflowPanel.cs
- XmlHierarchicalEnumerable.cs
- ServiceDebugElement.cs
- HtmlWindow.cs
- RuntimeResourceSet.cs
- DataBoundControlHelper.cs
- DataListItem.cs
- TableAutomationPeer.cs
- XmlHierarchicalEnumerable.cs
- TextChangedEventArgs.cs
- Quad.cs
- InvalidWMPVersionException.cs
- BorderSidesEditor.cs
- ChannelToken.cs
- DynamicDataExtensions.cs
- MetadataArtifactLoaderResource.cs
- Rectangle.cs
- CatalogPartCollection.cs
- PeerName.cs
- FileSystemWatcher.cs
- DataDesignUtil.cs
- ToolStripHighContrastRenderer.cs
- ProfileManager.cs
- EntityDataSourceContextCreatingEventArgs.cs
- WebPartMinimizeVerb.cs
- TextTreeInsertUndoUnit.cs
- CellTreeSimplifier.cs
- returneventsaver.cs
- NamedPipeDuplicateContext.cs
- ObjectFullSpanRewriter.cs
- ClonableStack.cs
- CompoundFileDeflateTransform.cs
- ReadOnlyDictionary.cs
- DependencyPropertyKind.cs
- SegmentTree.cs
- QilNode.cs
- ThreadInterruptedException.cs
- CommentEmitter.cs
- DataListItemEventArgs.cs
- CodeCompileUnit.cs
- _LazyAsyncResult.cs
- HwndMouseInputProvider.cs
- TypeElement.cs
- EdmProperty.cs
- XmlDocumentSerializer.cs
- SchemaElementLookUpTable.cs
- Blend.cs
- SecurityTokenAuthenticator.cs
- XmlStreamStore.cs
- ScriptRef.cs
- HttpVersion.cs
- TemplateInstanceAttribute.cs
- ContainerControl.cs
- DataGridItemEventArgs.cs
- XmlSerializationWriter.cs
- MetadataPropertyCollection.cs
- ToolStripSeparator.cs
- ListParagraph.cs
- OpenFileDialog.cs
- AmbientValueAttribute.cs
- RadialGradientBrush.cs
- FigureParaClient.cs
- ImageSourceConverter.cs
- Stackframe.cs
- XmlSchemaValidator.cs
- Propagator.JoinPropagator.JoinPredicateVisitor.cs
- ValidationPropertyAttribute.cs
- ResourceLoader.cs
- SQLBytesStorage.cs
- TargetConverter.cs
- TimeSpanMinutesOrInfiniteConverter.cs
- ConnectionPoint.cs
- SspiSafeHandles.cs
- ScrollableControlDesigner.cs
- SapiRecoInterop.cs
- JoinGraph.cs
- Deflater.cs
- CodeVariableDeclarationStatement.cs
- FeatureManager.cs
- GridErrorDlg.cs
- storepermission.cs
- WorkflowEnvironment.cs
- RegularExpressionValidator.cs
- Rule.cs
- CustomAttribute.cs