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
- FileChangesMonitor.cs
- Table.cs
- LinearKeyFrames.cs
- DataBoundControlDesigner.cs
- SqlCrossApplyToCrossJoin.cs
- safePerfProviderHandle.cs
- WebPartMovingEventArgs.cs
- DrawingContextWalker.cs
- BitmapImage.cs
- TextTreeFixupNode.cs
- Tracking.cs
- TraceContextRecord.cs
- QilDataSource.cs
- input.cs
- Bitmap.cs
- MemoryStream.cs
- CharacterMetricsDictionary.cs
- XmlSchemaSimpleType.cs
- DoubleAnimationUsingKeyFrames.cs
- XmlSerializer.cs
- WindowsStartMenu.cs
- MessageQueuePermission.cs
- SingleTagSectionHandler.cs
- SqlCacheDependencyDatabaseCollection.cs
- ReturnEventArgs.cs
- RequiredAttributeAttribute.cs
- RadioButtonAutomationPeer.cs
- PassportIdentity.cs
- ObjectSet.cs
- CacheHelper.cs
- DbConnectionOptions.cs
- LayoutEvent.cs
- ReadOnlyCollection.cs
- handlecollector.cs
- SafeReadContext.cs
- SponsorHelper.cs
- ReferentialConstraintRoleElement.cs
- AccessText.cs
- TextEndOfLine.cs
- ParagraphVisual.cs
- Native.cs
- NetCodeGroup.cs
- AsnEncodedData.cs
- RadioButtonPopupAdapter.cs
- ObjectStateManagerMetadata.cs
- StoreItemCollection.cs
- CodeNamespaceCollection.cs
- JsonEnumDataContract.cs
- DataGridViewCellLinkedList.cs
- BooleanExpr.cs
- MatrixTransform.cs
- TableItemPattern.cs
- oledbmetadatacollectionnames.cs
- BamlRecords.cs
- TypeDelegator.cs
- ErrorTableItemStyle.cs
- TimestampInformation.cs
- ObjectStateEntryDbUpdatableDataRecord.cs
- DataMemberConverter.cs
- ToolboxItemFilterAttribute.cs
- InheritanceContextChangedEventManager.cs
- GatewayDefinition.cs
- basevalidator.cs
- EventLogEntry.cs
- DataGridViewComboBoxEditingControl.cs
- TableSectionStyle.cs
- ClientConfigurationHost.cs
- UserThread.cs
- PersonalizableTypeEntry.cs
- HtmlInputHidden.cs
- ParseElementCollection.cs
- SqlAliasesReferenced.cs
- RawStylusInput.cs
- DataGridItem.cs
- RichTextBoxConstants.cs
- SingleStorage.cs
- DynamicDataResources.Designer.cs
- TaskFileService.cs
- TextElementEnumerator.cs
- ConfigsHelper.cs
- SiteMapProvider.cs
- ListBoxAutomationPeer.cs
- DataRelation.cs
- ListViewSelectEventArgs.cs
- DataSetUtil.cs
- DbConnectionPoolIdentity.cs
- LinqDataView.cs
- CreateInstanceBinder.cs
- Int16Animation.cs
- _SslSessionsCache.cs
- SimpleWebHandlerParser.cs
- FontNamesConverter.cs
- BufferedStream2.cs
- SQLSingle.cs
- BigInt.cs
- WorkflowExecutor.cs
- TransactionScope.cs
- ConfigXmlCDataSection.cs
- RangeValuePatternIdentifiers.cs
- SourceItem.cs