Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / untmp / whidbey / QFE / 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- CngProperty.cs
- StatusStrip.cs
- QilInvoke.cs
- IndexOutOfRangeException.cs
- DrawingCollection.cs
- AsnEncodedData.cs
- PagesSection.cs
- EndOfStreamException.cs
- BindingContext.cs
- BitmapEffectDrawingContextWalker.cs
- BitmapEffect.cs
- ListViewInsertionMark.cs
- Privilege.cs
- MessageDescriptionCollection.cs
- RequestQueue.cs
- TextBoxBase.cs
- DetailsViewUpdateEventArgs.cs
- XmlObjectSerializerWriteContext.cs
- MatrixCamera.cs
- ButtonPopupAdapter.cs
- CorrelationQuery.cs
- VolatileEnlistmentMultiplexing.cs
- MetafileHeaderWmf.cs
- UserPreferenceChangingEventArgs.cs
- SqlFunctionAttribute.cs
- Executor.cs
- DependencyProperty.cs
- UserControl.cs
- MsmqDiagnostics.cs
- AnnotationDocumentPaginator.cs
- CodeCommentStatementCollection.cs
- RotateTransform.cs
- ReflectPropertyDescriptor.cs
- ToolStripSplitStackLayout.cs
- XmlUTF8TextReader.cs
- RestHandlerFactory.cs
- RotateTransform.cs
- SoapAttributeOverrides.cs
- Attributes.cs
- VirtualDirectoryMapping.cs
- SimpleExpression.cs
- MailWebEventProvider.cs
- ImageAnimator.cs
- CellIdBoolean.cs
- DesignConnectionCollection.cs
- CategoryAttribute.cs
- Int16.cs
- AppDomainGrammarProxy.cs
- StreamGeometry.cs
- CompositionAdorner.cs
- DataGridColumnHeadersPresenterAutomationPeer.cs
- Exceptions.cs
- HostAdapter.cs
- TcpHostedTransportConfiguration.cs
- EntityDataSourceWizardForm.cs
- ExpressionHelper.cs
- SortFieldComparer.cs
- EditorPartCollection.cs
- IntPtr.cs
- XPathSelectionIterator.cs
- XmlAggregates.cs
- Stroke.cs
- DialogResultConverter.cs
- ColumnMapProcessor.cs
- XmlSchemaCollection.cs
- mediaeventshelper.cs
- DeadCharTextComposition.cs
- DbConnectionOptions.cs
- PerformanceCounter.cs
- KnownTypes.cs
- InternalSafeNativeMethods.cs
- XMLUtil.cs
- SinglePhaseEnlistment.cs
- AnnouncementInnerClient11.cs
- TabPage.cs
- ObjectSpanRewriter.cs
- DataGridViewCellStyleChangedEventArgs.cs
- SchemaEntity.cs
- ProtocolsConfigurationEntry.cs
- MetadataItemSerializer.cs
- TraceContextEventArgs.cs
- XmlSchemaExternal.cs
- SchemaTableColumn.cs
- ReferentialConstraintRoleElement.cs
- CallId.cs
- Emitter.cs
- HwndSubclass.cs
- PublisherMembershipCondition.cs
- ExpressionServices.cs
- SqlTriggerContext.cs
- AttributeExtensions.cs
- LinkDescriptor.cs
- BoundingRectTracker.cs
- COM2ExtendedTypeConverter.cs
- DSGeneratorProblem.cs
- PathTooLongException.cs
- TableAdapterManagerHelper.cs
- RSAPKCS1KeyExchangeDeformatter.cs
- InlineUIContainer.cs
- SchemaElementDecl.cs