Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / 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
- DataSourceControl.cs
- ForeignKeyConstraint.cs
- TextSchema.cs
- PartialCachingControl.cs
- DBSqlParser.cs
- ConnectionOrientedTransportChannelListener.cs
- XmlILIndex.cs
- SemaphoreSecurity.cs
- RichTextBox.cs
- ImagingCache.cs
- PositiveTimeSpanValidator.cs
- ListControlBoundActionList.cs
- TailCallAnalyzer.cs
- StrokeNodeOperations.cs
- ExternalException.cs
- PointLight.cs
- CookieParameter.cs
- FocusTracker.cs
- XmlElementAttributes.cs
- ParagraphResult.cs
- EntityDataSourceDataSelectionPanel.cs
- OracleRowUpdatingEventArgs.cs
- Translator.cs
- ListChunk.cs
- XmlSchemaException.cs
- GridViewEditEventArgs.cs
- MeshGeometry3D.cs
- SqlNodeAnnotations.cs
- Hashtable.cs
- HttpApplicationStateWrapper.cs
- NotCondition.cs
- Int32AnimationBase.cs
- DefaultExpressionVisitor.cs
- _ScatterGatherBuffers.cs
- HitTestResult.cs
- ExpandCollapseProviderWrapper.cs
- ApplicationActivator.cs
- Color.cs
- FixUpCollection.cs
- SqlUnionizer.cs
- CustomValidator.cs
- VariableQuery.cs
- AvTraceFormat.cs
- IsolatedStorageFileStream.cs
- TemplateControl.cs
- PartDesigner.cs
- MonthCalendar.cs
- RangeValueProviderWrapper.cs
- DateTime.cs
- DataViewSettingCollection.cs
- SqlParameterizer.cs
- BuildProvider.cs
- ModelVisual3D.cs
- DispatcherHookEventArgs.cs
- StateMachineAction.cs
- ControlTemplate.cs
- TransactionException.cs
- AppDomainAttributes.cs
- FindCriteriaCD1.cs
- SchemaComplexType.cs
- IListConverters.cs
- TextTreeObjectNode.cs
- SqlParameterCollection.cs
- StringOutput.cs
- DecimalStorage.cs
- TreeViewAutomationPeer.cs
- WCFServiceClientProxyGenerator.cs
- ListViewContainer.cs
- EventLogPermissionEntry.cs
- BaseProcessProtocolHandler.cs
- TakeQueryOptionExpression.cs
- propertytag.cs
- PersonalizationStateInfoCollection.cs
- UInt32.cs
- VisualTreeUtils.cs
- Int32CAMarshaler.cs
- GPRECTF.cs
- CompensateDesigner.cs
- Validator.cs
- GridViewItemAutomationPeer.cs
- BroadcastEventHelper.cs
- SslStreamSecurityUpgradeProvider.cs
- DataTableMapping.cs
- XmlAttributes.cs
- XmlSchemaImporter.cs
- ThaiBuddhistCalendar.cs
- DependencyObjectCodeDomSerializer.cs
- SelectionHighlightInfo.cs
- xamlnodes.cs
- Grant.cs
- ErrorFormatter.cs
- ByteArrayHelperWithString.cs
- CellParagraph.cs
- ObjectReferenceStack.cs
- ObjectStateEntryDbDataRecord.cs
- ProxyWebPartConnectionCollection.cs
- PermissionSetTriple.cs
- BitmapInitialize.cs
- DataObjectCopyingEventArgs.cs
- IdleTimeoutMonitor.cs