Code:
/ 4.0 / 4.0 / 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. // ==++== // // 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
- ResourcesBuildProvider.cs
- Geometry3D.cs
- WebPartCollection.cs
- Publisher.cs
- MouseDevice.cs
- shaperfactoryquerycacheentry.cs
- BoundPropertyEntry.cs
- BamlWriter.cs
- ToolStripGrip.cs
- RangeBaseAutomationPeer.cs
- PropertyPath.cs
- GeneralTransform.cs
- MimeWriter.cs
- CleanUpVirtualizedItemEventArgs.cs
- ProcessThreadCollection.cs
- DataTemplate.cs
- LineUtil.cs
- ClientBase.cs
- XmlRawWriterWrapper.cs
- CapabilitiesPattern.cs
- MenuItemBindingCollection.cs
- AlignmentYValidation.cs
- ConsoleKeyInfo.cs
- CurrentChangingEventManager.cs
- WeakReferenceKey.cs
- TreeViewDataItemAutomationPeer.cs
- WebPartsSection.cs
- DesigntimeLicenseContextSerializer.cs
- TextProviderWrapper.cs
- ProxyWebPart.cs
- LicenseException.cs
- ClipboardData.cs
- ConfigurationException.cs
- MarkupObject.cs
- Set.cs
- PolicyLevel.cs
- IdentityManager.cs
- XmlnsDictionary.cs
- TypefaceMetricsCache.cs
- SafeCoTaskMem.cs
- SessionStateModule.cs
- TextBoxBase.cs
- DesignerRegion.cs
- StorageScalarPropertyMapping.cs
- Exception.cs
- SerializationIncompleteException.cs
- PublishLicense.cs
- TransformerTypeCollection.cs
- DelayedRegex.cs
- SoapTransportImporter.cs
- GroupBox.cs
- StreamInfo.cs
- Pen.cs
- FixUp.cs
- AssemblyHash.cs
- DesignerVerbCollection.cs
- ListContractAdapter.cs
- PageTheme.cs
- SQLGuidStorage.cs
- RectConverter.cs
- DataGridViewImageCell.cs
- Stream.cs
- QueryHandler.cs
- XmlReflectionImporter.cs
- LoadItemsEventArgs.cs
- MediaScriptCommandRoutedEventArgs.cs
- EdmMember.cs
- EvidenceBase.cs
- DataServiceHost.cs
- SQLConvert.cs
- Speller.cs
- BasicCommandTreeVisitor.cs
- Evidence.cs
- SystemIPInterfaceStatistics.cs
- SmtpClient.cs
- SessionIDManager.cs
- Switch.cs
- RIPEMD160.cs
- KeyboardNavigation.cs
- FormViewDeleteEventArgs.cs
- XPathMessageFilter.cs
- Route.cs
- PeerNameRegistration.cs
- LayoutEvent.cs
- PrintingPermissionAttribute.cs
- Point3DCollectionConverter.cs
- WebPartDisplayModeCollection.cs
- HideDisabledControlAdapter.cs
- LocalizeDesigner.cs
- Typography.cs
- ColorComboBox.cs
- WeakReference.cs
- HtmlElementCollection.cs
- UriTemplateCompoundPathSegment.cs
- ScrollProperties.cs
- BypassElement.cs
- Variant.cs
- ScrollBar.cs
- ResourceProviderFactory.cs
- Brush.cs