Code:
/ FX-1434 / FX-1434 / 1.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
- TemplateColumn.cs
- HtmlInputButton.cs
- DockAndAnchorLayout.cs
- SafeEventLogReadHandle.cs
- WinEventWrap.cs
- TypedDatasetGenerator.cs
- PageRequestManager.cs
- Quaternion.cs
- ImageInfo.cs
- DataReceivedEventArgs.cs
- KeyConstraint.cs
- PhonemeEventArgs.cs
- DefaultMemberAttribute.cs
- ComponentManagerBroker.cs
- ValidationResult.cs
- MemberCollection.cs
- Activator.cs
- WebBrowser.cs
- EventSetter.cs
- RequestContext.cs
- WebControlsSection.cs
- versioninfo.cs
- CommandField.cs
- MergeLocalizationDirectives.cs
- NonVisualControlAttribute.cs
- Utils.cs
- MatrixAnimationUsingPath.cs
- Input.cs
- StringWriter.cs
- Validator.cs
- WindowsProgressbar.cs
- NumberSubstitution.cs
- OracleInfoMessageEventArgs.cs
- WSSecurityJan2004.cs
- EventHandlerList.cs
- ExeConfigurationFileMap.cs
- Expression.cs
- Policy.cs
- SqlNode.cs
- SqlTrackingWorkflowInstance.cs
- DataGridViewCellPaintingEventArgs.cs
- DataStorage.cs
- PreDigestedSignedInfo.cs
- regiisutil.cs
- XPathNode.cs
- LinkClickEvent.cs
- MetadataPropertyCollection.cs
- RtfFormatStack.cs
- login.cs
- XamlWrappingReader.cs
- ThreadStartException.cs
- OleDbConnectionInternal.cs
- AsynchronousChannelMergeEnumerator.cs
- embossbitmapeffect.cs
- ConfigurationElementProperty.cs
- EpmContentSerializerBase.cs
- WindowsBrush.cs
- ConfigurationStrings.cs
- ProtocolViolationException.cs
- Parameter.cs
- ScrollBarRenderer.cs
- FacetValues.cs
- ModelTreeEnumerator.cs
- PersonalizableAttribute.cs
- DayRenderEvent.cs
- XPathNavigator.cs
- CollectionViewGroupRoot.cs
- Constraint.cs
- TransactionScope.cs
- CalendarDataBindingHandler.cs
- BufferModeSettings.cs
- IODescriptionAttribute.cs
- ClientBuildManager.cs
- PersonalizableTypeEntry.cs
- ConfigurationSettings.cs
- FileDialogCustomPlaces.cs
- UrlPropertyAttribute.cs
- DeviceSpecificDesigner.cs
- DotNetATv1WindowsLogEntrySerializer.cs
- SortedList.cs
- ApplicationTrust.cs
- EntityDesignerBuildProvider.cs
- QfeChecker.cs
- ObjectDataSourceSelectingEventArgs.cs
- PromptStyle.cs
- TickBar.cs
- TypeGeneratedEventArgs.cs
- XsdDuration.cs
- TypeListConverter.cs
- ConnectionManagementSection.cs
- ImageClickEventArgs.cs
- Stacktrace.cs
- EastAsianLunisolarCalendar.cs
- DecimalAnimation.cs
- FilteredAttributeCollection.cs
- ResolveDuplex11AsyncResult.cs
- TrustManager.cs
- ActivityDesignerHelper.cs
- FormViewInsertedEventArgs.cs
- SurrogateEncoder.cs