Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / 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. // // ==--== /*============================================================ ** ** 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- AddInStore.cs
- Metafile.cs
- ContextMenuStrip.cs
- CompilerScopeManager.cs
- DocumentPaginator.cs
- Win32PrintDialog.cs
- OleDbRowUpdatedEvent.cs
- XmlIncludeAttribute.cs
- MediaEntryAttribute.cs
- ShaperBuffers.cs
- CachedBitmap.cs
- Logging.cs
- RenderData.cs
- CompiledQuery.cs
- TextCompositionEventArgs.cs
- XhtmlBasicFormAdapter.cs
- StatusBarAutomationPeer.cs
- Util.cs
- OutputCacheModule.cs
- TimeStampChecker.cs
- ViewUtilities.cs
- VariableValue.cs
- GridEntry.cs
- ListControl.cs
- SolidBrush.cs
- FormatterServicesNoSerializableCheck.cs
- WrappedIUnknown.cs
- PrinterResolution.cs
- ChunkedMemoryStream.cs
- ControlDesignerState.cs
- GridItemCollection.cs
- ToolStripOverflowButton.cs
- SelectionListComponentEditor.cs
- WorkflowMarkupSerializer.cs
- Registry.cs
- WizardPanel.cs
- QueuePathDialog.cs
- SocketConnection.cs
- TrackBar.cs
- ZipArchive.cs
- SerializerWriterEventHandlers.cs
- XamlSerializerUtil.cs
- Component.cs
- HealthMonitoringSectionHelper.cs
- UpdateRecord.cs
- BypassElement.cs
- XmlIncludeAttribute.cs
- XamlParser.cs
- PerformanceCounterLib.cs
- XmlSchemaElement.cs
- SessionStateContainer.cs
- TextTreePropertyUndoUnit.cs
- CodeAttributeArgumentCollection.cs
- XmlAnyAttributeAttribute.cs
- ToolStripDropDownButton.cs
- InfoCardCryptoHelper.cs
- InstanceCollisionException.cs
- SqlDataSourceCommandEventArgs.cs
- CharacterHit.cs
- BitmapVisualManager.cs
- ComplusTypeValidator.cs
- AppDomainCompilerProxy.cs
- ColorMatrix.cs
- AssertFilter.cs
- PageThemeBuildProvider.cs
- ArraySet.cs
- precedingsibling.cs
- ConfigurationManagerHelper.cs
- ValidationError.cs
- XamlToRtfWriter.cs
- HtmlContainerControl.cs
- Int64Animation.cs
- querybuilder.cs
- DataGridSortingEventArgs.cs
- DependencyPropertyKind.cs
- HtmlTable.cs
- XmlBinaryReader.cs
- GraphicsPath.cs
- safex509handles.cs
- WmpBitmapDecoder.cs
- TagMapCollection.cs
- FormatterServices.cs
- PenContext.cs
- SqlInternalConnection.cs
- ColumnWidthChangedEvent.cs
- LineServicesCallbacks.cs
- initElementDictionary.cs
- ToolStripComboBox.cs
- CheckBoxBaseAdapter.cs
- PlainXmlSerializer.cs
- BaseAsyncResult.cs
- _Win32.cs
- ImageListUtils.cs
- FileDialog_Vista_Interop.cs
- CLSCompliantAttribute.cs
- BufferedReadStream.cs
- XmlNamespaceMapping.cs
- DBDataPermission.cs
- DataServiceQueryException.cs
- SBCSCodePageEncoding.cs