Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / 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; } } } }
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- InternalReceiveMessage.cs
- ContainerFilterService.cs
- MaskedTextBox.cs
- SqlDataSourceFilteringEventArgs.cs
- MetadataUtilsSmi.cs
- VirtualPath.cs
- BatchParser.cs
- SafeEventLogWriteHandle.cs
- DivideByZeroException.cs
- SendMailErrorEventArgs.cs
- Scripts.cs
- UmAlQuraCalendar.cs
- SoapProtocolImporter.cs
- ReadOnlyDataSourceView.cs
- DoubleAnimationUsingPath.cs
- InfoCardCryptoHelper.cs
- LinkedResource.cs
- HostingMessageProperty.cs
- EntryPointNotFoundException.cs
- SamlSecurityTokenAuthenticator.cs
- PropertyInfoSet.cs
- HelpProvider.cs
- OlePropertyStructs.cs
- CompiledWorkflowDefinitionContext.cs
- CodeVariableReferenceExpression.cs
- WindowsProgressbar.cs
- hresults.cs
- VectorCollectionConverter.cs
- WorkflowQueueInfo.cs
- Parallel.cs
- VirtualStackFrame.cs
- NumberSubstitution.cs
- TransformValueSerializer.cs
- HTMLTagNameToTypeMapper.cs
- CodeConstructor.cs
- XmlArrayItemAttributes.cs
- GridViewUpdateEventArgs.cs
- connectionpool.cs
- ZipIOExtraFieldPaddingElement.cs
- InheritanceService.cs
- SchemaContext.cs
- Exceptions.cs
- FrameworkElementFactoryMarkupObject.cs
- TextEditorSelection.cs
- SmtpTransport.cs
- AudioDeviceOut.cs
- DataGridViewSortCompareEventArgs.cs
- WindowsUserNameSecurityTokenAuthenticator.cs
- IdentifierService.cs
- ProcessStartInfo.cs
- TreeViewItemAutomationPeer.cs
- ImageMap.cs
- ValueProviderWrapper.cs
- LineProperties.cs
- SourceElementsCollection.cs
- Color.cs
- QilXmlReader.cs
- DataGridViewImageColumn.cs
- TcpClientSocketManager.cs
- ThumbButtonInfoCollection.cs
- COM2PropertyBuilderUITypeEditor.cs
- ActiveXSite.cs
- InternalSafeNativeMethods.cs
- X509AudioLogo.cs
- DataListGeneralPage.cs
- TypedRowGenerator.cs
- ResolveMatchesMessageCD1.cs
- CommandLibraryHelper.cs
- QualifiedCellIdBoolean.cs
- MenuRendererClassic.cs
- DES.cs
- MailAddressCollection.cs
- HatchBrush.cs
- EdmMember.cs
- DrawToolTipEventArgs.cs
- Model3DCollection.cs
- unsafenativemethodsother.cs
- DetailsViewModeEventArgs.cs
- PropertyReferenceSerializer.cs
- LabelLiteral.cs
- DataSourceSerializationException.cs
- SiteMapPath.cs
- XmlUtil.cs
- SimpleBitVector32.cs
- HwndProxyElementProvider.cs
- CalendarKeyboardHelper.cs
- EntityDataSourceStatementEditor.cs
- MapPathBasedVirtualPathProvider.cs
- Point4D.cs
- SafeArchiveContext.cs
- LineUtil.cs
- WindowsTab.cs
- XmlConverter.cs
- DataSourceView.cs
- Constants.cs
- _NTAuthentication.cs
- DataControlField.cs
- FrameworkContentElementAutomationPeer.cs
- SqlTriggerAttribute.cs
- NetTcpSection.cs