Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / ndp / clr / src / BCL / System / Collections / DictionaryEntry.cs / 1 / 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
- MimeObjectFactory.cs
- SerializerDescriptor.cs
- ImageSource.cs
- IdentifierCreationService.cs
- NetworkInterface.cs
- UpdateExpressionVisitor.cs
- FontDifferentiator.cs
- Rect3D.cs
- ListControlBoundActionList.cs
- ArrayExtension.cs
- Model3DGroup.cs
- LingerOption.cs
- OperationValidationEventArgs.cs
- PipeSecurity.cs
- ParenthesizePropertyNameAttribute.cs
- LookupBindingPropertiesAttribute.cs
- TreeView.cs
- ClientBuildManagerTypeDescriptionProviderBridge.cs
- BuilderInfo.cs
- CollectionChangeEventArgs.cs
- ViewGenResults.cs
- ContextMenuAutomationPeer.cs
- DefaultPropertyAttribute.cs
- XsltCompileContext.cs
- EraserBehavior.cs
- ValidatorCompatibilityHelper.cs
- AssemblyInfo.cs
- TextAnchor.cs
- TdsParser.cs
- MenuBase.cs
- HashSetDebugView.cs
- IndexerNameAttribute.cs
- VariantWrapper.cs
- ResourceContainer.cs
- ListBoxAutomationPeer.cs
- Point3DValueSerializer.cs
- Subordinate.cs
- WeakReference.cs
- AuthenticationModulesSection.cs
- EdmSchemaError.cs
- TextParagraphCache.cs
- NativeCppClassAttribute.cs
- PersianCalendar.cs
- LinkedList.cs
- SerializationInfoEnumerator.cs
- SafeHandles.cs
- InProcStateClientManager.cs
- HostedHttpRequestAsyncResult.cs
- SingleResultAttribute.cs
- EdgeProfileValidation.cs
- RectangleGeometry.cs
- WizardPanelChangingEventArgs.cs
- ConstructorArgumentAttribute.cs
- BitmapCodecInfoInternal.cs
- Types.cs
- PngBitmapEncoder.cs
- DbModificationClause.cs
- FillBehavior.cs
- ObsoleteAttribute.cs
- DataGridParentRows.cs
- BoundsDrawingContextWalker.cs
- SystemResources.cs
- SerialReceived.cs
- Cursor.cs
- SocketElement.cs
- FilterQueryOptionExpression.cs
- GreenMethods.cs
- DrawItemEvent.cs
- _SslState.cs
- SqlComparer.cs
- SecurityTokenAuthenticator.cs
- XamlSerializer.cs
- DocumentViewerConstants.cs
- WsatAdminException.cs
- SslStream.cs
- GridViewRowCollection.cs
- SafeEventLogWriteHandle.cs
- NotificationContext.cs
- InlineUIContainer.cs
- MarkupWriter.cs
- UnionQueryOperator.cs
- KeyedHashAlgorithm.cs
- ApplySecurityAndSendAsyncResult.cs
- CompatibleComparer.cs
- ApplicationDirectory.cs
- FixedSOMPageConstructor.cs
- DirtyTextRange.cs
- XmlWellformedWriter.cs
- ErrorWebPart.cs
- TreeBuilder.cs
- CodeThrowExceptionStatement.cs
- VirtualPathProvider.cs
- SoapIncludeAttribute.cs
- PageStatePersister.cs
- DataControlCommands.cs
- XmlCustomFormatter.cs
- InkSerializer.cs
- ButtonFieldBase.cs
- BypassElementCollection.cs
- AuthenticationModuleElementCollection.cs