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
- ObjectDataSourceSelectingEventArgs.cs
- MemberCollection.cs
- DataServiceKeyAttribute.cs
- TemplateNameScope.cs
- PropertyBuilder.cs
- OdbcError.cs
- ImageMap.cs
- TypeNameConverter.cs
- ListView.cs
- BitmapEffect.cs
- MemberHolder.cs
- OleDbDataAdapter.cs
- DiscreteKeyFrames.cs
- xamlnodes.cs
- WinInet.cs
- TextTreeRootNode.cs
- HttpProfileGroupBase.cs
- CultureInfo.cs
- JoinTreeSlot.cs
- GeneralTransform.cs
- ZoneIdentityPermission.cs
- NetCodeGroup.cs
- StateRuntime.cs
- IriParsingElement.cs
- OperationFormatStyle.cs
- WebConvert.cs
- ReservationNotFoundException.cs
- Query.cs
- AssemblyNameProxy.cs
- DesignerObjectListAdapter.cs
- WebPartConnectionsConfigureVerb.cs
- ActivityMarkupSerializer.cs
- LoginCancelEventArgs.cs
- HtmlFormAdapter.cs
- XmlCollation.cs
- ProfilePropertyMetadata.cs
- WebBaseEventKeyComparer.cs
- MobileTemplatedControlDesigner.cs
- WorkflowExecutor.cs
- LogStream.cs
- CngProperty.cs
- Pair.cs
- SurrogateChar.cs
- AstNode.cs
- Oid.cs
- FrameworkTemplate.cs
- HyperLinkStyle.cs
- GridViewDesigner.cs
- DataSourceXmlSerializer.cs
- OptimizedTemplateContent.cs
- StackBuilderSink.cs
- ProviderUtil.cs
- DataGridViewRowsAddedEventArgs.cs
- WindowsListViewGroupHelper.cs
- NativeMethods.cs
- ListViewUpdatedEventArgs.cs
- ZipIOExtraFieldPaddingElement.cs
- ByteKeyFrameCollection.cs
- PenContexts.cs
- RowUpdatingEventArgs.cs
- CodeCompiler.cs
- ScriptResourceHandler.cs
- TransactionFlowElement.cs
- HashLookup.cs
- Rijndael.cs
- ComplexPropertyEntry.cs
- DataListItemCollection.cs
- NegationPusher.cs
- RequestCacheEntry.cs
- MenuItemCollectionEditorDialog.cs
- VisualTarget.cs
- GlobalItem.cs
- HotSpot.cs
- CategoryValueConverter.cs
- PrePrepareMethodAttribute.cs
- XamlGridLengthSerializer.cs
- WindowsSlider.cs
- SystemIcons.cs
- ScrollPatternIdentifiers.cs
- MarkupCompiler.cs
- BaseValidator.cs
- CounterCreationDataCollection.cs
- SimpleBitVector32.cs
- Char.cs
- GetMemberBinder.cs
- EpmSyndicationContentSerializer.cs
- MessageBox.cs
- SymbolMethod.cs
- Convert.cs
- TextProviderWrapper.cs
- BamlLocalizabilityResolver.cs
- CellQuery.cs
- ClientType.cs
- WindowsFormsHelpers.cs
- Function.cs
- HashMembershipCondition.cs
- AssemblyAttributesGoHere.cs
- wgx_sdk_version.cs
- MsmqIntegrationInputChannel.cs
- Operand.cs