Code:
/ 4.0 / 4.0 / 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. // ==++== // // 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
- StylusEventArgs.cs
- SQLByte.cs
- XmlBinaryReader.cs
- MessageSecurityProtocol.cs
- LayoutInformation.cs
- SqlConnectionFactory.cs
- XmlAttributeAttribute.cs
- FontStretchConverter.cs
- DataIdProcessor.cs
- TimeEnumHelper.cs
- CancelEventArgs.cs
- FlowNode.cs
- CodeTypeDeclarationCollection.cs
- ProcessProtocolHandler.cs
- CacheSection.cs
- UserInitiatedNavigationPermission.cs
- ToggleProviderWrapper.cs
- TreeView.cs
- AdPostCacheSubstitution.cs
- RIPEMD160.cs
- AppLevelCompilationSectionCache.cs
- sqlmetadatafactory.cs
- ExtentKey.cs
- GridViewPageEventArgs.cs
- DrawingContextWalker.cs
- ArrayWithOffset.cs
- GroupPartitionExpr.cs
- SingleSelectRootGridEntry.cs
- FrameworkContextData.cs
- HttpWebRequest.cs
- QuadraticBezierSegment.cs
- XmlRawWriter.cs
- Attributes.cs
- Point3D.cs
- CompiledELinqQueryState.cs
- basenumberconverter.cs
- HtmlTableRowCollection.cs
- DataGridViewIntLinkedList.cs
- SystemKeyConverter.cs
- CryptoApi.cs
- PersonalizablePropertyEntry.cs
- SqlDataSourceCommandEventArgs.cs
- SystemIcmpV6Statistics.cs
- WinEventWrap.cs
- KeyInterop.cs
- StylusPointCollection.cs
- _DisconnectOverlappedAsyncResult.cs
- NativeWindow.cs
- TextStore.cs
- SqlProviderServices.cs
- SecurityChannel.cs
- TransactionBehavior.cs
- HttpCookiesSection.cs
- TraceHandler.cs
- AutoGeneratedFieldProperties.cs
- GACMembershipCondition.cs
- StringFunctions.cs
- MemberAccessException.cs
- PeerNameRecordCollection.cs
- DecimalFormatter.cs
- GeneralTransform3D.cs
- OleDbError.cs
- WebBrowserHelper.cs
- SectionRecord.cs
- PowerEase.cs
- QueryableDataSourceEditData.cs
- PenCursorManager.cs
- KerberosReceiverSecurityToken.cs
- XmlAnyElementAttributes.cs
- ListManagerBindingsCollection.cs
- TextTreeExtractElementUndoUnit.cs
- SingleObjectCollection.cs
- LinearGradientBrush.cs
- FontEditor.cs
- RemotingServices.cs
- BinaryReader.cs
- FrameSecurityDescriptor.cs
- TdsParameterSetter.cs
- DbProviderConfigurationHandler.cs
- CharacterBuffer.cs
- UserNamePasswordValidator.cs
- HttpProtocolImporter.cs
- WindowsListViewGroup.cs
- StringUtil.cs
- DateTimeFormat.cs
- ButtonFieldBase.cs
- XmlLoader.cs
- X509PeerCertificateElement.cs
- FrameworkElementAutomationPeer.cs
- RSAPKCS1KeyExchangeDeformatter.cs
- ClientScriptManagerWrapper.cs
- InsufficientMemoryException.cs
- LineBreakRecord.cs
- CategoryNameCollection.cs
- BufferModesCollection.cs
- DataProviderNameConverter.cs
- DiscardableAttribute.cs
- DataServiceConfiguration.cs
- SecurityCredentialsManager.cs
- DynamicQueryStringParameter.cs