Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / 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
- ProxyElement.cs
- AccessDataSource.cs
- QilFactory.cs
- PageAsyncTaskManager.cs
- JapaneseCalendar.cs
- BreakRecordTable.cs
- Assembly.cs
- PolyBezierSegment.cs
- Panel.cs
- HMACSHA1.cs
- StandardCommands.cs
- BamlLocalizer.cs
- EntityDataSourceEntitySetNameItem.cs
- GroupBoxAutomationPeer.cs
- SafeEventLogWriteHandle.cs
- TypedLocationWrapper.cs
- ToolStripDropDown.cs
- QueryPageSettingsEventArgs.cs
- Parameter.cs
- HtmlForm.cs
- Baml2006KeyRecord.cs
- TypeSystem.cs
- ColorTransformHelper.cs
- MobileControlDesigner.cs
- _BasicClient.cs
- DesignTableCollection.cs
- TaiwanCalendar.cs
- RangeBase.cs
- XComponentModel.cs
- ReversePositionQuery.cs
- EntityTypeBase.cs
- OdbcCommandBuilder.cs
- IsolationInterop.cs
- ListViewContainer.cs
- WindowsEditBox.cs
- _ReceiveMessageOverlappedAsyncResult.cs
- DateTimeStorage.cs
- InternalReceiveMessage.cs
- ComponentChangingEvent.cs
- SqlClientPermission.cs
- NetworkCredential.cs
- UpdatePanelTriggerCollection.cs
- TreeViewDesigner.cs
- ThreadNeutralSemaphore.cs
- ProofTokenCryptoHandle.cs
- Table.cs
- HwndKeyboardInputProvider.cs
- HttpPostedFile.cs
- columnmapfactory.cs
- FontResourceCache.cs
- SQLRoleProvider.cs
- formatter.cs
- RoutedEvent.cs
- SimpleHandlerBuildProvider.cs
- Int64Storage.cs
- StorageEntitySetMapping.cs
- ContainerUtilities.cs
- TypeName.cs
- NumericExpr.cs
- PropertyGridEditorPart.cs
- XPathNodeIterator.cs
- TransportChannelFactory.cs
- ModifierKeysValueSerializer.cs
- PerspectiveCamera.cs
- SafeArrayRankMismatchException.cs
- InstanceData.cs
- MarkupExtensionParser.cs
- ImageField.cs
- ExceptionWrapper.cs
- PolygonHotSpot.cs
- RichTextBox.cs
- SqlColumnizer.cs
- MultiPropertyDescriptorGridEntry.cs
- SoundPlayer.cs
- DesignTableCollection.cs
- WorkflowInstance.cs
- PropertiesTab.cs
- CalendarDay.cs
- RemotingClientProxy.cs
- VersionPair.cs
- ComboBox.cs
- KnownColorTable.cs
- RotateTransform3D.cs
- MaterialGroup.cs
- ReliableMessagingVersion.cs
- DesignerView.Commands.cs
- _NtlmClient.cs
- ContractMapping.cs
- SelectionEditingBehavior.cs
- XamlPoint3DCollectionSerializer.cs
- ContextMenuStrip.cs
- ContainsSearchOperator.cs
- TextTrailingWordEllipsis.cs
- SoapSchemaExporter.cs
- DecodeHelper.cs
- CodeCompileUnit.cs
- CheckBoxPopupAdapter.cs
- TreeNode.cs
- XmlArrayItemAttributes.cs
- HtmlInputFile.cs