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
- CleanUpVirtualizedItemEventArgs.cs
- ClientSettings.cs
- SchemaImporterExtensionElement.cs
- EdmRelationshipRoleAttribute.cs
- WsatProxy.cs
- ProxyGenerationError.cs
- TypeConvertions.cs
- ProjectionPathSegment.cs
- SHA1.cs
- UnsafeNativeMethodsCLR.cs
- LoginCancelEventArgs.cs
- CheckBoxAutomationPeer.cs
- EntityDataSourceStatementEditorForm.cs
- XmlSerializableReader.cs
- Visual3D.cs
- FileLogRecordHeader.cs
- Expression.cs
- ConnectionsZone.cs
- UnsafePeerToPeerMethods.cs
- EdmFunction.cs
- WSUtilitySpecificationVersion.cs
- MediaElementAutomationPeer.cs
- HttpProfileGroupBase.cs
- ScrollProperties.cs
- HScrollProperties.cs
- ServiceMetadataContractBehavior.cs
- WebPartManagerInternals.cs
- RegexEditorDialog.cs
- tooltip.cs
- ISO2022Encoding.cs
- CachedBitmap.cs
- DataGridViewCellValueEventArgs.cs
- WebResourceAttribute.cs
- OdbcError.cs
- KeyPressEvent.cs
- HashAlgorithm.cs
- ActivityTrace.cs
- DesignSurfaceEvent.cs
- ViewStateModeByIdAttribute.cs
- sqlinternaltransaction.cs
- DropAnimation.xaml.cs
- DataTablePropertyDescriptor.cs
- SpellerInterop.cs
- SamlSubjectStatement.cs
- FrameworkTextComposition.cs
- x509store.cs
- PeerContact.cs
- TypedReference.cs
- ValidatingPropertiesEventArgs.cs
- PropertyBuilder.cs
- KnownTypesHelper.cs
- DesignerVerbCollection.cs
- RemoteCryptoTokenProvider.cs
- MemoryMappedFile.cs
- Point.cs
- FixedSOMTable.cs
- FontEmbeddingManager.cs
- RegexWriter.cs
- UnknownBitmapEncoder.cs
- LogWriteRestartAreaState.cs
- RegisteredScript.cs
- DbDeleteCommandTree.cs
- ParserHooks.cs
- Converter.cs
- GridViewDeletedEventArgs.cs
- CurrencyWrapper.cs
- BookmarkList.cs
- ScrollPattern.cs
- DataServiceExpressionVisitor.cs
- OSFeature.cs
- PagedDataSource.cs
- Activator.cs
- TransformCryptoHandle.cs
- MatrixStack.cs
- CellPartitioner.cs
- DLinqAssociationProvider.cs
- EditCommandColumn.cs
- ThemeInfoAttribute.cs
- StringToken.cs
- SafeWaitHandle.cs
- OutputWindow.cs
- WorkflowRuntimeServiceElement.cs
- DataSourceExpressionCollection.cs
- WriterOutput.cs
- DropDownList.cs
- ListSortDescription.cs
- smtppermission.cs
- EventLogReader.cs
- ProtectedProviderSettings.cs
- SmtpMail.cs
- UInt64Storage.cs
- MSAAWinEventWrap.cs
- BinaryWriter.cs
- ProfileBuildProvider.cs
- FormParameter.cs
- NetSectionGroup.cs
- ObjectDataSource.cs
- TimeIntervalCollection.cs
- CodeRemoveEventStatement.cs
- IImplicitResourceProvider.cs