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
- FormViewDeleteEventArgs.cs
- TypeElementCollection.cs
- GroupItemAutomationPeer.cs
- ReferenceList.cs
- PlaceHolder.cs
- PrtTicket_Editor.cs
- MapPathBasedVirtualPathProvider.cs
- BooleanFunctions.cs
- Pkcs7Recipient.cs
- CapabilitiesState.cs
- BindingExpression.cs
- PolicyException.cs
- OleDbInfoMessageEvent.cs
- ButtonColumn.cs
- DesignerSerializerAttribute.cs
- ToolStripStatusLabel.cs
- GlobalEventManager.cs
- TranslateTransform3D.cs
- MainMenu.cs
- RsaSecurityKey.cs
- BaseTemplateParser.cs
- DefaultWorkflowSchedulerService.cs
- Sql8ExpressionRewriter.cs
- ValidatingReaderNodeData.cs
- Helper.cs
- CompilationUtil.cs
- Base64Encoder.cs
- PerformanceCounterManager.cs
- PeerApplication.cs
- WindowsAuthenticationEventArgs.cs
- FileEnumerator.cs
- AuthenticationModuleElementCollection.cs
- ContainerVisual.cs
- Int16AnimationBase.cs
- TextServicesPropertyRanges.cs
- ValidatedControlConverter.cs
- StateMachineHelpers.cs
- DataGridViewCellToolTipTextNeededEventArgs.cs
- LoginAutoFormat.cs
- SqlInternalConnectionSmi.cs
- TouchPoint.cs
- ScriptReferenceEventArgs.cs
- CustomWebEventKey.cs
- WizardForm.cs
- While.cs
- AvTraceFormat.cs
- CornerRadius.cs
- DataGridColumnEventArgs.cs
- PointHitTestResult.cs
- DetailsViewPagerRow.cs
- log.cs
- UserThread.cs
- EmptyStringExpandableObjectConverter.cs
- CompensationParticipant.cs
- StorageConditionPropertyMapping.cs
- EncoderNLS.cs
- KeyPressEvent.cs
- DesignTimeData.cs
- WebPartActionVerb.cs
- TextTrailingCharacterEllipsis.cs
- Int32Rect.cs
- WsatAdminException.cs
- FrameworkElement.cs
- SmiContextFactory.cs
- ExpressionWriter.cs
- InputProviderSite.cs
- ContainerUIElement3D.cs
- DocumentApplicationJournalEntry.cs
- ProviderUtil.cs
- WindowsNonControl.cs
- IntAverageAggregationOperator.cs
- DataGridAddNewRow.cs
- ContextMenuStrip.cs
- CombinedGeometry.cs
- XamlSerializationHelper.cs
- DeclaredTypeElement.cs
- DataContractAttribute.cs
- SoapIgnoreAttribute.cs
- InputReportEventArgs.cs
- ExtractedStateEntry.cs
- WindowsFormsSectionHandler.cs
- QueueSurrogate.cs
- ProxyAttribute.cs
- PackagePartCollection.cs
- RecognizeCompletedEventArgs.cs
- PageCatalogPart.cs
- ProcessModule.cs
- MasterPage.cs
- Rect3D.cs
- SafeProcessHandle.cs
- ChangePassword.cs
- MetadataProperty.cs
- ResourceReferenceExpression.cs
- GcHandle.cs
- Highlights.cs
- TextAction.cs
- StringFormat.cs
- ResXResourceReader.cs
- DocumentSignatureManager.cs
- RuleSettingsCollection.cs