Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / untmp / whidbey / QFE / 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; }
}
}
}
// 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
- CreationContext.cs
- TreeView.cs
- NumberFormatInfo.cs
- BuilderPropertyEntry.cs
- HandlerFactoryCache.cs
- Package.cs
- Operand.cs
- BindableTemplateBuilder.cs
- ReceiveActivityValidator.cs
- XmlNamespaceManager.cs
- StructureChangedEventArgs.cs
- Point3DValueSerializer.cs
- EntityTypeBase.cs
- Set.cs
- IndexOutOfRangeException.cs
- InkCanvasAutomationPeer.cs
- Debug.cs
- ObjectSpanRewriter.cs
- UnauthorizedAccessException.cs
- StreamGeometry.cs
- AddingNewEventArgs.cs
- LicenseException.cs
- UserPreferenceChangedEventArgs.cs
- FontWeight.cs
- securitymgrsite.cs
- EventLogPermissionAttribute.cs
- InvalidDataContractException.cs
- Label.cs
- SqlConnectionPoolProviderInfo.cs
- ModuleBuilderData.cs
- PackageDigitalSignatureManager.cs
- FileSystemEventArgs.cs
- EntityCommandExecutionException.cs
- XamlGridLengthSerializer.cs
- HandlerWithFactory.cs
- FrameworkContentElementAutomationPeer.cs
- PolyQuadraticBezierSegment.cs
- DotAtomReader.cs
- AggregatePushdown.cs
- XmlDataDocument.cs
- XmlSchemaAttribute.cs
- XdrBuilder.cs
- InkCollectionBehavior.cs
- DynamicResourceExtensionConverter.cs
- TypeBrowser.xaml.cs
- CapiSafeHandles.cs
- SamlAuthorityBinding.cs
- XPathNavigatorReader.cs
- TypedElement.cs
- BidOverLoads.cs
- DispatcherProcessingDisabled.cs
- FontFamily.cs
- PointLight.cs
- Helper.cs
- ClientTargetSection.cs
- AnimationStorage.cs
- SequentialActivityDesigner.cs
- DataViewSettingCollection.cs
- ScrollBarRenderer.cs
- ScriptComponentDescriptor.cs
- AutoGeneratedField.cs
- DataMemberListEditor.cs
- assemblycache.cs
- ErrorFormatter.cs
- DoubleMinMaxAggregationOperator.cs
- Utils.cs
- HttpRawResponse.cs
- _HeaderInfoTable.cs
- FolderBrowserDialog.cs
- SemanticValue.cs
- ColumnMapCopier.cs
- AstTree.cs
- XPathBinder.cs
- ExpressionNode.cs
- OutputCacheSection.cs
- HScrollBar.cs
- WorkflowServiceHost.cs
- RepeaterItemEventArgs.cs
- ListItemCollection.cs
- SyndicationSerializer.cs
- ParserContext.cs
- XPathBinder.cs
- CapabilitiesState.cs
- Random.cs
- PauseStoryboard.cs
- ManipulationBoundaryFeedbackEventArgs.cs
- SchemaMapping.cs
- PersistenceTask.cs
- WaitHandleCannotBeOpenedException.cs
- ListBoxDesigner.cs
- QilFunction.cs
- StreamDocument.cs
- TextElement.cs
- DataSysAttribute.cs
- ListViewGroupItemCollection.cs
- ServiceModelSectionGroup.cs
- RegisteredArrayDeclaration.cs
- TextEditorCopyPaste.cs
- XomlCompilerError.cs
- PropagatorResult.cs