Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / clr / src / BCL / System / Collections / KeyValuePairs.cs / 1305376 / 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 = "" )] #if FEATURE_CORECLR [Obsolete("Non-generic collections have been deprecated. Please use collections in System.Collections.Generic.")] #endif 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- QuaternionConverter.cs
- BooleanProjectedSlot.cs
- OutputCacheProfileCollection.cs
- InitializerFacet.cs
- AdRotator.cs
- DetailsViewInsertedEventArgs.cs
- COM2IPerPropertyBrowsingHandler.cs
- TimeoutTimer.cs
- XmlQueryOutput.cs
- TransactionInformation.cs
- SettingsPropertyWrongTypeException.cs
- Message.cs
- PeerNearMe.cs
- DesignerActionTextItem.cs
- PackWebResponse.cs
- DesignBindingPropertyDescriptor.cs
- PrimarySelectionGlyph.cs
- Scene3D.cs
- Point3DAnimationBase.cs
- CqlParserHelpers.cs
- ScrollBarAutomationPeer.cs
- RequestResizeEvent.cs
- TrackingMemoryStream.cs
- X509Certificate2Collection.cs
- PolyLineSegment.cs
- URIFormatException.cs
- BasicCellRelation.cs
- ConsoleKeyInfo.cs
- DataGridViewRowEventArgs.cs
- _DisconnectOverlappedAsyncResult.cs
- httpserverutility.cs
- Matrix3D.cs
- TraversalRequest.cs
- DataGridHelper.cs
- FixedNode.cs
- PowerModeChangedEventArgs.cs
- ConfigurationManager.cs
- XmlConvert.cs
- ChunkedMemoryStream.cs
- ArgumentException.cs
- Int64Storage.cs
- ViewManager.cs
- LoginCancelEventArgs.cs
- DataServiceRequestOfT.cs
- UrlMapping.cs
- PageAsyncTask.cs
- OdbcErrorCollection.cs
- CodeLabeledStatement.cs
- ResourceAssociationType.cs
- XmlIlTypeHelper.cs
- QueryOptionExpression.cs
- ProfileGroupSettings.cs
- OracleSqlParser.cs
- XmlSerializerOperationBehavior.cs
- X509AsymmetricSecurityKey.cs
- SqlUtils.cs
- WsdlBuildProvider.cs
- MessageSecurityVersionConverter.cs
- HttpCookie.cs
- GeneratedCodeAttribute.cs
- mediaeventargs.cs
- JapaneseCalendar.cs
- RelationHandler.cs
- FlowDocumentReader.cs
- CollectionViewGroup.cs
- DSACryptoServiceProvider.cs
- LinearGradientBrush.cs
- ProfilePropertyNameValidator.cs
- _Events.cs
- DataView.cs
- WebPartMenu.cs
- XslAst.cs
- WorkflowRuntimeServiceElementCollection.cs
- GroupDescription.cs
- ImportStoreException.cs
- PathNode.cs
- SqlInternalConnectionTds.cs
- Error.cs
- Decimal.cs
- AsnEncodedData.cs
- ProfileProvider.cs
- MemberHolder.cs
- MetadataAssemblyHelper.cs
- DataConnectionHelper.cs
- Italic.cs
- dbdatarecord.cs
- Oid.cs
- RegisteredScript.cs
- TrustLevel.cs
- BaseTemplateCodeDomTreeGenerator.cs
- Constraint.cs
- ListDictionaryInternal.cs
- CodeAttributeDeclaration.cs
- ILGenerator.cs
- CommonXSendMessage.cs
- SByteConverter.cs
- CompilerInfo.cs
- ObjectNavigationPropertyMapping.cs
- webclient.cs
- EnumValAlphaComparer.cs