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
- MethodAccessException.cs
- GridViewCellAutomationPeer.cs
- NetDataContractSerializer.cs
- SingleSelectRootGridEntry.cs
- XPathAncestorIterator.cs
- StoreItemCollection.Loader.cs
- SocketElement.cs
- DataColumnCollection.cs
- RsaKeyGen.cs
- IIS7UserPrincipal.cs
- XsltArgumentList.cs
- EventProxy.cs
- PageBreakRecord.cs
- SingleAnimationUsingKeyFrames.cs
- __FastResourceComparer.cs
- DesignRelationCollection.cs
- NavigationProperty.cs
- EntityDataSourceStatementEditorForm.cs
- TextBoxAutomationPeer.cs
- BulletedList.cs
- HttpListenerTimeoutManager.cs
- ExclusiveNamedPipeTransportManager.cs
- BevelBitmapEffect.cs
- Permission.cs
- ProjectionCamera.cs
- GridSplitter.cs
- EncryptRequest.cs
- DbCommandTree.cs
- CodeDOMUtility.cs
- XmlDocumentFieldSchema.cs
- Configuration.cs
- SecondaryViewProvider.cs
- sqlnorm.cs
- DefaultValueAttribute.cs
- SelectedGridItemChangedEvent.cs
- Hyperlink.cs
- RegexBoyerMoore.cs
- DesignerOptions.cs
- MultipartIdentifier.cs
- UserControl.cs
- MergeFilterQuery.cs
- MimeTypeMapper.cs
- Triplet.cs
- ListViewEditEventArgs.cs
- HtmlInputPassword.cs
- TokenizerHelper.cs
- BitmapEffect.cs
- SubpageParagraph.cs
- TextBox.cs
- HttpAsyncResult.cs
- StrongBox.cs
- DesignerForm.cs
- Accessible.cs
- ArrayTypeMismatchException.cs
- ItemCollection.cs
- EncodingFallbackAwareXmlTextWriter.cs
- RequestDescription.cs
- GeneratedContractType.cs
- RequestCacheValidator.cs
- TypeUtil.cs
- EntityUtil.cs
- SystemInfo.cs
- FixedStringLookup.cs
- SecurityUtils.cs
- XomlCompilerError.cs
- ConfigurationPropertyAttribute.cs
- Monitor.cs
- DataGridParentRows.cs
- Freezable.cs
- HttpClientCertificate.cs
- OutputCacheSection.cs
- FixedSOMPage.cs
- ServiceSecurityAuditElement.cs
- ApplicationSecurityManager.cs
- querybuilder.cs
- HandlerBase.cs
- RegistrySecurity.cs
- ListViewDataItem.cs
- Drawing.cs
- XmlQualifiedName.cs
- LineInfo.cs
- SparseMemoryStream.cs
- CompositeTypefaceMetrics.cs
- odbcmetadatacolumnnames.cs
- ByteStorage.cs
- BitmapPalettes.cs
- Rules.cs
- DrawToolTipEventArgs.cs
- DataContractAttribute.cs
- ByteStorage.cs
- PolicyManager.cs
- SQLString.cs
- AnonymousIdentificationModule.cs
- CustomErrorCollection.cs
- PipelineModuleStepContainer.cs
- MarkupExtensionSerializer.cs
- RtfToXamlReader.cs
- __ComObject.cs
- RawStylusInputCustomDataList.cs
- PreviewPrintController.cs