Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / clr / src / BCL / System / Collections / DictionaryEntry.cs / 1305376 / DictionaryEntry.cs
// ==++== // // Copyright (c) Microsoft Corporation. All rights reserved. // // ==--== /*============================================================ ** ** Interface: DictionaryEntry ** **[....] ** ** ** Purpose: Return Value for IDictionaryEnumerator::GetEntry ** ** ===========================================================*/ namespace System.Collections { using System; // A DictionaryEntry holds a key and a value from a dictionary. // It is returned by IDictionaryEnumerator::GetEntry(). [System.Runtime.InteropServices.ComVisible(true)] [Serializable] public struct DictionaryEntry { private Object _key; private Object _value; // Constructs a new DictionaryEnumerator by setting the Key // and Value fields appropriately. public DictionaryEntry(Object key, Object value) { _key = key; _value = value; } public Object Key { get { return _key; } set { _key = value; } } public Object Value { get { return _value; } set { _value = 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
- PreviewPrintController.cs
- DragEvent.cs
- Configuration.cs
- XamlInt32CollectionSerializer.cs
- PageParser.cs
- VersionUtil.cs
- XamlClipboardData.cs
- ClientBuildManager.cs
- HttpPostClientProtocol.cs
- LayoutEditorPart.cs
- HttpHostedTransportConfiguration.cs
- RuleAction.cs
- ReadOnlyHierarchicalDataSourceView.cs
- TimerEventSubscriptionCollection.cs
- CommandField.cs
- GrammarBuilder.cs
- RelatedImageListAttribute.cs
- CodeParameterDeclarationExpression.cs
- XPathDocument.cs
- DataTemplateSelector.cs
- OpacityConverter.cs
- SimpleWorkerRequest.cs
- PropertyChangedEventArgs.cs
- UnsafeNativeMethodsMilCoreApi.cs
- DataGridViewImageCell.cs
- XpsPackagingException.cs
- ObjectFactoryCodeDomTreeGenerator.cs
- ControlPropertyNameConverter.cs
- VisualBrush.cs
- TextCollapsingProperties.cs
- OdbcConnectionFactory.cs
- TreeNodeCollectionEditorDialog.cs
- SafeCancelMibChangeNotify.cs
- _FixedSizeReader.cs
- TileBrush.cs
- SessionPageStatePersister.cs
- ListSourceHelper.cs
- SqlDataSourceCache.cs
- validation.cs
- ApplicationFileParser.cs
- BitmapCacheBrush.cs
- RtType.cs
- BrowserTree.cs
- CodeIdentifier.cs
- SqlParameterizer.cs
- PropertyEmitterBase.cs
- SignatureDescription.cs
- ToolboxItem.cs
- ListViewInsertionMark.cs
- RootBrowserWindowAutomationPeer.cs
- PowerStatus.cs
- DelegateHelpers.cs
- mda.cs
- SecurityProtocolCorrelationState.cs
- XmlHierarchyData.cs
- _SslStream.cs
- SecurityException.cs
- ScriptManagerProxy.cs
- GridViewUpdatedEventArgs.cs
- Animatable.cs
- ResourceDisplayNameAttribute.cs
- Focus.cs
- NavigateUrlConverter.cs
- CatalogPartChrome.cs
- SecurityManager.cs
- XmlSerializationWriter.cs
- StringReader.cs
- UpdateException.cs
- SymLanguageType.cs
- MailAddress.cs
- XmlObjectSerializerWriteContext.cs
- MenuItemBindingCollection.cs
- EncryptedType.cs
- ExpressionPrefixAttribute.cs
- AnchoredBlock.cs
- DataSourceCache.cs
- CustomValidator.cs
- ScrollViewer.cs
- WindowsEditBoxRange.cs
- ContentFilePart.cs
- CodeDomConfigurationHandler.cs
- UnmanagedMemoryStream.cs
- ProxyGenerationError.cs
- ManipulationStartedEventArgs.cs
- RuleSetReference.cs
- SignedXml.cs
- QueryOutputWriter.cs
- DataColumnPropertyDescriptor.cs
- WindowsListViewItemCheckBox.cs
- srgsitem.cs
- FlagsAttribute.cs
- PrimitiveCodeDomSerializer.cs
- KeyTimeConverter.cs
- DBAsyncResult.cs
- FilterableAttribute.cs
- HWStack.cs
- CompilerError.cs
- ThreadExceptionEvent.cs
- SystemIPGlobalStatistics.cs
- RegexTree.cs