Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / 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; } } } }
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- Cursor.cs
- PopupEventArgs.cs
- ListBoxChrome.cs
- HttpCacheVary.cs
- ParameterCollectionEditorForm.cs
- ModifyActivitiesPropertyDescriptor.cs
- DataControlCommands.cs
- SingleAnimationBase.cs
- GridViewCancelEditEventArgs.cs
- DynamicDataExtensions.cs
- HotSpot.cs
- embossbitmapeffect.cs
- ManagementClass.cs
- DragStartedEventArgs.cs
- UIInitializationException.cs
- DataRowComparer.cs
- SoapAttributeOverrides.cs
- WebPartEventArgs.cs
- PersonalizableTypeEntry.cs
- ReaderWriterLockWrapper.cs
- StrokeCollectionConverter.cs
- BackStopAuthenticationModule.cs
- InvalidComObjectException.cs
- UpdatePanel.cs
- ParenthesizePropertyNameAttribute.cs
- IODescriptionAttribute.cs
- SiteIdentityPermission.cs
- DataTableExtensions.cs
- Content.cs
- RecipientInfo.cs
- BamlLocalizer.cs
- OutputScope.cs
- NativeMethods.cs
- PolyBezierSegment.cs
- SettingsPropertyWrongTypeException.cs
- MetadataFile.cs
- DrawingAttributeSerializer.cs
- DataGridViewRowConverter.cs
- IPGlobalProperties.cs
- EntityChangedParams.cs
- DataStorage.cs
- StaticSiteMapProvider.cs
- SchemaConstraints.cs
- ExternalDataExchangeService.cs
- SqlParameterCollection.cs
- InvokeHandlers.cs
- PrintController.cs
- FormViewAutoFormat.cs
- WebException.cs
- SamlAuthenticationClaimResource.cs
- NodeFunctions.cs
- CodeDirectionExpression.cs
- CanonicalFormWriter.cs
- OperatingSystem.cs
- ParseNumbers.cs
- SByte.cs
- Frame.cs
- wgx_render.cs
- SourceFileInfo.cs
- PagedDataSource.cs
- Material.cs
- ParseNumbers.cs
- XsltFunctions.cs
- TextFindEngine.cs
- SqlProvider.cs
- WindowInteractionStateTracker.cs
- MemberDomainMap.cs
- BooleanConverter.cs
- PropertySourceInfo.cs
- WindowVisualStateTracker.cs
- WebSysDescriptionAttribute.cs
- XmlObjectSerializerReadContextComplex.cs
- WsdlBuildProvider.cs
- Point.cs
- iisPickupDirectory.cs
- ShortcutKeysEditor.cs
- HttpException.cs
- ScriptReference.cs
- ISAPIRuntime.cs
- ServiceModelEnumValidatorAttribute.cs
- SecurityTokenException.cs
- objectquery_tresulttype.cs
- CommandID.cs
- WindowsAuthenticationModule.cs
- EntitySqlQueryCacheEntry.cs
- IndentedWriter.cs
- ListBoxItemWrapperAutomationPeer.cs
- AttachedPropertyBrowsableWhenAttributePresentAttribute.cs
- Config.cs
- HtmlFormParameterReader.cs
- CallbackValidatorAttribute.cs
- MarkedHighlightComponent.cs
- UniqueConstraint.cs
- StorageEntitySetMapping.cs
- TextElementEnumerator.cs
- DesignerSerializerAttribute.cs
- GridViewColumn.cs
- DBConcurrencyException.cs
- datacache.cs
- EdmItemCollection.cs