Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / 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
- AttributeParameterInfo.cs
- LineServicesRun.cs
- DataTableClearEvent.cs
- SQLMoneyStorage.cs
- BackEase.cs
- DomNameTable.cs
- SettingsAttributes.cs
- BaseDataList.cs
- ListViewDataItem.cs
- AmbientLight.cs
- RegexRunner.cs
- TextFindEngine.cs
- SmiEventSink.cs
- ValidationError.cs
- Preprocessor.cs
- WindowsIdentity.cs
- OleDbParameterCollection.cs
- WebColorConverter.cs
- XmlSchemaDatatype.cs
- WebBodyFormatMessageProperty.cs
- XpsS0ValidatingLoader.cs
- TokenBasedSet.cs
- HandlerFactoryWrapper.cs
- TCEAdapterGenerator.cs
- DataError.cs
- Guid.cs
- XmlUnspecifiedAttribute.cs
- InvalidWMPVersionException.cs
- CodeMemberMethod.cs
- TextContainerHelper.cs
- RegularExpressionValidator.cs
- DescendantOverDescendantQuery.cs
- StickyNoteContentControl.cs
- ListViewCancelEventArgs.cs
- GlyphRun.cs
- RbTree.cs
- XamlLoadErrorInfo.cs
- AnimationClock.cs
- ScriptingAuthenticationServiceSection.cs
- ItemMap.cs
- StrokeFIndices.cs
- _NtlmClient.cs
- DataGridViewRowPostPaintEventArgs.cs
- ExtensionQuery.cs
- wmiprovider.cs
- TriState.cs
- SQLInt16Storage.cs
- RowParagraph.cs
- MessagePropertyVariants.cs
- IPHostEntry.cs
- ThreadPool.cs
- WebPartActionVerb.cs
- DateTimeFormatInfo.cs
- NamespaceDecl.cs
- DataGridColumnHeaderAutomationPeer.cs
- RetrieveVirtualItemEventArgs.cs
- XamlFrame.cs
- WorkflowApplicationUnloadedException.cs
- ToolStripManager.cs
- ScaleTransform3D.cs
- Page.cs
- Win32Exception.cs
- WorkflowElementDialog.cs
- GradientBrush.cs
- NavigationWindow.cs
- QuadraticBezierSegment.cs
- EntityContainerEmitter.cs
- ProxyFragment.cs
- HandlerMappingMemo.cs
- XmlAttributeCollection.cs
- ReleaseInstanceMode.cs
- AdvancedBindingEditor.cs
- XmlSchemaSimpleContent.cs
- FixedPageStructure.cs
- GiveFeedbackEventArgs.cs
- DataTableClearEvent.cs
- WebConfigurationHost.cs
- ColorDialog.cs
- ConnectionsZone.cs
- XmlFormatWriterGenerator.cs
- XmlSchemas.cs
- ASCIIEncoding.cs
- MatrixTransform3D.cs
- Avt.cs
- _PooledStream.cs
- UInt64Converter.cs
- HttpModule.cs
- DataGridCaption.cs
- CopyAttributesAction.cs
- Exception.cs
- OneToOneMappingSerializer.cs
- ConfigurationStrings.cs
- TailPinnedEventArgs.cs
- VectorAnimationUsingKeyFrames.cs
- wmiprovider.cs
- CodeMemberMethod.cs
- SizeLimitedCache.cs
- DesignerAttribute.cs
- TimerEventSubscriptionCollection.cs
- ProxyHwnd.cs