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
- SimpleApplicationHost.cs
- NameNode.cs
- FixedStringLookup.cs
- ToolStripSplitStackLayout.cs
- ArithmeticException.cs
- SqlConnectionFactory.cs
- FillErrorEventArgs.cs
- TemplateXamlTreeBuilder.cs
- ReferencedAssembly.cs
- FindCriteriaApril2005.cs
- Propagator.JoinPropagator.cs
- GridEntry.cs
- ForEachDesigner.xaml.cs
- ConnectionStringSettingsCollection.cs
- NameValueSectionHandler.cs
- InputDevice.cs
- XamlPointCollectionSerializer.cs
- ToggleButtonAutomationPeer.cs
- TemplateEditingVerb.cs
- HashHelper.cs
- XmlILAnnotation.cs
- BaseTemplateCodeDomTreeGenerator.cs
- IntPtr.cs
- dbdatarecord.cs
- WeakReferenceKey.cs
- Application.cs
- DataTableNameHandler.cs
- EntityTypeBase.cs
- Style.cs
- StylusEventArgs.cs
- OleDbReferenceCollection.cs
- SqlFunctionAttribute.cs
- SectionVisual.cs
- TabOrder.cs
- CodeGroup.cs
- ReachDocumentReferenceCollectionSerializer.cs
- ReadOnlyTernaryTree.cs
- UnsafePeerToPeerMethods.cs
- ConcurrentBag.cs
- ContentPlaceHolder.cs
- Animatable.cs
- ProxyWebPartManager.cs
- SafeLibraryHandle.cs
- StyleBamlTreeBuilder.cs
- DataGridColumnCollectionEditor.cs
- ExpressionLexer.cs
- Function.cs
- HttpContextBase.cs
- CommonXSendMessage.cs
- RowTypeElement.cs
- ConfigurationManager.cs
- KeyNotFoundException.cs
- MeasureItemEvent.cs
- RepeatInfo.cs
- TranslateTransform.cs
- ConfigPathUtility.cs
- WSSecurityOneDotOneReceiveSecurityHeader.cs
- HtmlTableCell.cs
- ContainsSearchOperator.cs
- InputProcessorProfiles.cs
- EraserBehavior.cs
- DocumentSchemaValidator.cs
- ToolBarPanel.cs
- RequestCachingSection.cs
- InternalBase.cs
- MailAddress.cs
- MergeFailedEvent.cs
- RegexInterpreter.cs
- SQLBinaryStorage.cs
- TablePattern.cs
- TemplatedAdorner.cs
- NavigationWindow.cs
- ResourceDescriptionAttribute.cs
- ToolStripContainerActionList.cs
- ScriptResourceHandler.cs
- PolyLineSegment.cs
- WebPartExportVerb.cs
- WindowsListBox.cs
- storepermissionattribute.cs
- AppSettingsExpressionBuilder.cs
- SecurityTokenValidationException.cs
- TdsEnums.cs
- SQLUtility.cs
- mediapermission.cs
- ZipIOFileItemStream.cs
- httpstaticobjectscollection.cs
- FilteredAttributeCollection.cs
- EventLogPermissionAttribute.cs
- SID.cs
- PointAnimationUsingKeyFrames.cs
- FocusWithinProperty.cs
- CleanUpVirtualizedItemEventArgs.cs
- SuppressMessageAttribute.cs
- HttpResponse.cs
- Util.cs
- BufferAllocator.cs
- ContentElement.cs
- GB18030Encoding.cs
- MoveSizeWinEventHandler.cs
- RemoveStoryboard.cs