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
- EventLogger.cs
- ClientTarget.cs
- ReachIDocumentPaginatorSerializer.cs
- ComPlusContractBehavior.cs
- HwndProxyElementProvider.cs
- FontStyle.cs
- SafeRightsManagementHandle.cs
- HScrollProperties.cs
- AttachedPropertyBrowsableForChildrenAttribute.cs
- ResourceSet.cs
- PresentationAppDomainManager.cs
- BinaryReader.cs
- LogicalExpressionTypeConverter.cs
- COM2IManagedPerPropertyBrowsingHandler.cs
- AssertFilter.cs
- BufferBuilder.cs
- XmlProcessingInstruction.cs
- GridSplitterAutomationPeer.cs
- SecurityHeaderLayout.cs
- TraceLog.cs
- UnsafeNativeMethods.cs
- SystemIPInterfaceProperties.cs
- Parsers.cs
- OrderedDictionary.cs
- SafeLibraryHandle.cs
- DataGridItem.cs
- CultureMapper.cs
- ProcessingInstructionAction.cs
- XmlHierarchicalDataSourceView.cs
- NeutralResourcesLanguageAttribute.cs
- LogicalExpr.cs
- ItemsPresenter.cs
- SqlCharStream.cs
- ToolboxItem.cs
- Compress.cs
- MissingSatelliteAssemblyException.cs
- SymmetricSecurityBindingElement.cs
- ScrollEvent.cs
- NativeCompoundFileAPIs.cs
- FilterQuery.cs
- XmlDataCollection.cs
- Size3DConverter.cs
- DataConnectionHelper.cs
- RelativeSource.cs
- TransactionManager.cs
- DiagnosticsConfigurationHandler.cs
- HttpWebRequest.cs
- XmlSignificantWhitespace.cs
- WrappedDispatcherException.cs
- SmtpSpecifiedPickupDirectoryElement.cs
- ArithmeticException.cs
- AttachmentService.cs
- MenuItemAutomationPeer.cs
- ImageUrlEditor.cs
- Keyboard.cs
- FieldMetadata.cs
- ToggleProviderWrapper.cs
- TreeNode.cs
- ResourceWriter.cs
- TimeSpanMinutesConverter.cs
- RoleManagerEventArgs.cs
- WorkflowFileItem.cs
- PeerApplicationLaunchInfo.cs
- BinHexDecoder.cs
- GridViewSelectEventArgs.cs
- ScopelessEnumAttribute.cs
- SchemaImporterExtensionsSection.cs
- XmlSchemaSimpleTypeList.cs
- DiscreteKeyFrames.cs
- AmbientLight.cs
- CodeAttachEventStatement.cs
- SamlAudienceRestrictionCondition.cs
- RuleSettings.cs
- MarginsConverter.cs
- TemplateApplicationHelper.cs
- EmptyReadOnlyDictionaryInternal.cs
- ICspAsymmetricAlgorithm.cs
- ExpressionBuilderCollection.cs
- TextShapeableCharacters.cs
- SystemGatewayIPAddressInformation.cs
- ActivatedMessageQueue.cs
- BaseCAMarshaler.cs
- configsystem.cs
- Point3DConverter.cs
- GenericEnumConverter.cs
- VerbConverter.cs
- FixedPageAutomationPeer.cs
- SpeechDetectedEventArgs.cs
- NullableIntSumAggregationOperator.cs
- FormViewUpdatedEventArgs.cs
- HttpChannelBindingToken.cs
- WmlSelectionListAdapter.cs
- ExpressionTextBox.xaml.cs
- DirectoryObjectSecurity.cs
- AppDomainCompilerProxy.cs
- COSERVERINFO.cs
- AxisAngleRotation3D.cs
- SecurityRuntime.cs
- ThreadStaticAttribute.cs
- COAUTHIDENTITY.cs