Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / 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
- DataControlFieldCell.cs
- DbCommandTree.cs
- CancellationHandlerDesigner.cs
- QilName.cs
- RewritingProcessor.cs
- EntityReference.cs
- GPStream.cs
- BrushConverter.cs
- EditorPart.cs
- RegionInfo.cs
- ProtocolsConfiguration.cs
- VariableAction.cs
- UnsafeNativeMethods.cs
- DateTimeValueSerializer.cs
- BitmapSizeOptions.cs
- ServicesExceptionNotHandledEventArgs.cs
- MdiWindowListStrip.cs
- LoginDesignerUtil.cs
- XhtmlBasicImageAdapter.cs
- ClientScriptManagerWrapper.cs
- DateTimeFormat.cs
- Sequence.cs
- ZoneIdentityPermission.cs
- UIHelper.cs
- PartialCachingAttribute.cs
- DataSourceConverter.cs
- XmlDataDocument.cs
- MetafileHeader.cs
- OutputWindow.cs
- StorageComplexTypeMapping.cs
- DataSourceXmlAttributeAttribute.cs
- OleServicesContext.cs
- StrongName.cs
- BrowserDefinition.cs
- EventMappingSettings.cs
- RealProxy.cs
- ArrayElementGridEntry.cs
- UserControlParser.cs
- FixedDocument.cs
- ValidationHelper.cs
- IxmlLineInfo.cs
- ListViewItem.cs
- SystemIPv4InterfaceProperties.cs
- ArrangedElementCollection.cs
- SizeF.cs
- MatrixKeyFrameCollection.cs
- ProcessThreadCollection.cs
- Durable.cs
- Int32AnimationBase.cs
- TextEffectResolver.cs
- ConfigurationStrings.cs
- Soap.cs
- SRGSCompiler.cs
- WindowsHyperlink.cs
- XmlQualifiedNameTest.cs
- FamilyMapCollection.cs
- XmlIgnoreAttribute.cs
- XmlStringTable.cs
- RuntimeCompatibilityAttribute.cs
- Literal.cs
- InvalidComObjectException.cs
- DataGridViewCellConverter.cs
- OutArgument.cs
- CultureMapper.cs
- Site.cs
- _NestedSingleAsyncResult.cs
- XmlSchemaSimpleTypeUnion.cs
- StorageInfo.cs
- StrongNamePublicKeyBlob.cs
- DbConnectionStringBuilder.cs
- SizeFConverter.cs
- BaseDataBoundControl.cs
- JsonEncodingStreamWrapper.cs
- SequentialOutput.cs
- OdbcConnectionOpen.cs
- XmlDataSource.cs
- FieldDescriptor.cs
- DataGridViewDataConnection.cs
- UnionCodeGroup.cs
- SqlUdtInfo.cs
- ListSourceHelper.cs
- BamlRecordWriter.cs
- FileReservationCollection.cs
- ScaleTransform.cs
- FlagsAttribute.cs
- StandardBindingCollectionElement.cs
- ValidatingReaderNodeData.cs
- Positioning.cs
- ParameterCollection.cs
- MultiPageTextView.cs
- OleDbStruct.cs
- MappedMetaModel.cs
- ProcessStartInfo.cs
- DataService.cs
- GatewayDefinition.cs
- PasswordTextContainer.cs
- StackOverflowException.cs
- securestring.cs
- ImageSourceConverter.cs
- NumericExpr.cs