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
- ProfileService.cs
- DiscardableAttribute.cs
- MetadataCache.cs
- DataSysAttribute.cs
- CachedFontFace.cs
- WithStatement.cs
- AddingNewEventArgs.cs
- ManagementQuery.cs
- InfoCardTrace.cs
- DataControlLinkButton.cs
- FileLogRecordStream.cs
- XmlBinaryWriterSession.cs
- cookieexception.cs
- Guid.cs
- DataGridViewCellStyle.cs
- Int64KeyFrameCollection.cs
- AutomationPropertyInfo.cs
- SiteMembershipCondition.cs
- IndexerNameAttribute.cs
- Dispatcher.cs
- SqlCacheDependency.cs
- _IPv6Address.cs
- XmlCountingReader.cs
- NameValueCollection.cs
- HttpPostProtocolImporter.cs
- BulletChrome.cs
- GenericEnumConverter.cs
- SqlBuilder.cs
- TableLayoutColumnStyleCollection.cs
- ContactManager.cs
- DropShadowEffect.cs
- PolicyManager.cs
- TdsParserSafeHandles.cs
- ByteAnimationBase.cs
- SmiMetaData.cs
- x509utils.cs
- GenerateTemporaryTargetAssembly.cs
- MgmtConfigurationRecord.cs
- EntityUtil.cs
- TransactionalPackage.cs
- documentsequencetextpointer.cs
- MembershipSection.cs
- EnumBuilder.cs
- SqlClientFactory.cs
- FigureParaClient.cs
- DataGridViewButtonCell.cs
- EncodingNLS.cs
- ErrorRuntimeConfig.cs
- HelpInfo.cs
- PlatformCulture.cs
- UrlAuthFailedErrorFormatter.cs
- HttpCachePolicy.cs
- PageWrapper.cs
- _AutoWebProxyScriptHelper.cs
- Activity.cs
- ScalarType.cs
- DateTimePicker.cs
- LambdaCompiler.Logical.cs
- StateChangeEvent.cs
- LineGeometry.cs
- ClientCultureInfo.cs
- printdlgexmarshaler.cs
- SqlConnection.cs
- NullableConverter.cs
- StringToken.cs
- DateTimeUtil.cs
- DataViewSettingCollection.cs
- WebCodeGenerator.cs
- XmlSchemaSimpleContent.cs
- XPathNodeHelper.cs
- DateTimeConverter.cs
- AutomationPropertyInfo.cs
- EventLogPermissionEntryCollection.cs
- ScrollChrome.cs
- VisualStyleInformation.cs
- Utils.cs
- RSAProtectedConfigurationProvider.cs
- SafeNativeMethodsMilCoreApi.cs
- OleDbRowUpdatingEvent.cs
- TagElement.cs
- TextTreeExtractElementUndoUnit.cs
- TimersDescriptionAttribute.cs
- CategoryGridEntry.cs
- MessageAction.cs
- XmlSchemaSequence.cs
- New.cs
- ChangeBlockUndoRecord.cs
- ImageMetadata.cs
- TimeSpanStorage.cs
- ConstraintStruct.cs
- OleStrCAMarshaler.cs
- IsolatedStorage.cs
- AnnotationAdorner.cs
- AttachedAnnotation.cs
- Matrix3DStack.cs
- SortedSetDebugView.cs
- ConstructorNeedsTagAttribute.cs
- OfTypeExpression.cs
- ArgumentException.cs
- ExpressionVisitorHelpers.cs