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
- MdiWindowListStrip.cs
- ResXResourceSet.cs
- DataBinding.cs
- DetailsViewRow.cs
- ActiveXHelper.cs
- CompressStream.cs
- WarningException.cs
- FragmentQuery.cs
- CodeValidator.cs
- AspNetHostingPermission.cs
- ValueType.cs
- ConstraintManager.cs
- ProgressBarAutomationPeer.cs
- SimpleTypeResolver.cs
- DynamicRenderer.cs
- FileLoadException.cs
- PropertyGridCommands.cs
- ManipulationInertiaStartingEventArgs.cs
- DynamicRendererThreadManager.cs
- PixelFormatConverter.cs
- DataRecord.cs
- NodeFunctions.cs
- EmptyEnumerator.cs
- CheckBoxList.cs
- LinqDataSourceStatusEventArgs.cs
- XmlSchemaCompilationSettings.cs
- DataGridPageChangedEventArgs.cs
- BooleanKeyFrameCollection.cs
- ContentWrapperAttribute.cs
- Tag.cs
- CssTextWriter.cs
- VirtualizedContainerService.cs
- DeferredElementTreeState.cs
- WebContentFormatHelper.cs
- XmlIterators.cs
- PolyQuadraticBezierSegmentFigureLogic.cs
- ConnectionStringsExpressionBuilder.cs
- FixedFindEngine.cs
- BitmapEffectvisualstate.cs
- HtmlHistory.cs
- EditorAttribute.cs
- BinaryEditor.cs
- HelloMessage11.cs
- ItemCollection.cs
- ThemeableAttribute.cs
- ListControl.cs
- OperationInvokerBehavior.cs
- UnauthorizedWebPart.cs
- TextElementAutomationPeer.cs
- HtmlTableRowCollection.cs
- MetadataArtifactLoaderResource.cs
- MetadataArtifactLoaderResource.cs
- FloatSumAggregationOperator.cs
- ArithmeticLiteral.cs
- ObfuscateAssemblyAttribute.cs
- RuntimeUtils.cs
- X509Utils.cs
- EditorPart.cs
- handlecollector.cs
- DataSourceXmlSubItemAttribute.cs
- DataGridColumnDropSeparator.cs
- _DigestClient.cs
- ReadWriteObjectLock.cs
- NullableConverter.cs
- GroupBox.cs
- Geometry3D.cs
- LateBoundBitmapDecoder.cs
- DocumentViewerAutomationPeer.cs
- SQLBinaryStorage.cs
- RectAnimation.cs
- WindowsPrincipal.cs
- ReadOnlyMetadataCollection.cs
- HtmlInputControl.cs
- EffectiveValueEntry.cs
- Error.cs
- MD5CryptoServiceProvider.cs
- LifetimeServices.cs
- HitTestParameters.cs
- Reference.cs
- FullTextState.cs
- ObjectListCommand.cs
- XmlSchemaSimpleType.cs
- WebReferencesBuildProvider.cs
- HttpRequest.cs
- HtmlFormParameterWriter.cs
- XNodeValidator.cs
- Stylesheet.cs
- UserThread.cs
- IdentityHolder.cs
- BindableTemplateBuilder.cs
- TemplateColumn.cs
- ZipIORawDataFileBlock.cs
- AssociatedControlConverter.cs
- StringUtil.cs
- __Filters.cs
- OciEnlistContext.cs
- ButtonField.cs
- KnownTypesProvider.cs
- EventRecordWrittenEventArgs.cs
- ObjectHandle.cs