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
- PatternMatcher.cs
- DesignerSerializationManager.cs
- OleDbPropertySetGuid.cs
- RemoteWebConfigurationHostServer.cs
- Parser.cs
- Drawing.cs
- CodeArrayIndexerExpression.cs
- SignatureToken.cs
- PassportAuthentication.cs
- MasterPageBuildProvider.cs
- GlyphsSerializer.cs
- FloatSumAggregationOperator.cs
- Splitter.cs
- DataKey.cs
- ConnectionManagementSection.cs
- OutputCacheModule.cs
- DefaultCommandConverter.cs
- DebuggerService.cs
- IconHelper.cs
- InvalidProgramException.cs
- Highlights.cs
- PolicyStatement.cs
- BitmapFrameDecode.cs
- DataViewSettingCollection.cs
- RuntimeHandles.cs
- WizardDesigner.cs
- DateTimeSerializationSection.cs
- UnauthorizedWebPart.cs
- StateWorkerRequest.cs
- ToolStripGripRenderEventArgs.cs
- QilName.cs
- ImageDrawing.cs
- NativeMethods.cs
- RestClientProxyHandler.cs
- TableProviderWrapper.cs
- GeneralTransform2DTo3D.cs
- ArrangedElement.cs
- SiteMap.cs
- CommunicationException.cs
- HebrewNumber.cs
- NavigationProperty.cs
- FlatButtonAppearance.cs
- HttpHeaderCollection.cs
- TableRowGroup.cs
- FieldBuilder.cs
- WebServiceTypeData.cs
- StorageEndPropertyMapping.cs
- EventLogConfiguration.cs
- HttpVersion.cs
- CodeGeneratorAttribute.cs
- ConnectionStringSettings.cs
- SafeMILHandle.cs
- SymmetricSecurityBindingElement.cs
- DataGridViewImageCell.cs
- MetadataProperty.cs
- TreeViewEvent.cs
- ConsoleCancelEventArgs.cs
- nulltextcontainer.cs
- QuaternionRotation3D.cs
- ContentElement.cs
- CodeSubDirectoriesCollection.cs
- Component.cs
- WebControlParameterProxy.cs
- ZipIOLocalFileHeader.cs
- HtmlElementEventArgs.cs
- ArrangedElementCollection.cs
- PrintPageEvent.cs
- MimeBasePart.cs
- Int32CollectionValueSerializer.cs
- ThrowHelper.cs
- DocumentCollection.cs
- oledbmetadatacolumnnames.cs
- EndpointBehaviorElementCollection.cs
- AttributeQuery.cs
- Stack.cs
- ChannelSinkStacks.cs
- ColumnWidthChangedEvent.cs
- PenLineJoinValidation.cs
- Win32KeyboardDevice.cs
- SqlDependencyListener.cs
- Message.cs
- IProducerConsumerCollection.cs
- ObjectListShowCommandsEventArgs.cs
- MediaEntryAttribute.cs
- UniqueIdentifierService.cs
- ConnectionString.cs
- Misc.cs
- TreeNodeCollectionEditor.cs
- StyleSheetDesigner.cs
- PreservationFileReader.cs
- NegotiateStream.cs
- JoinTreeNode.cs
- Normalization.cs
- ColumnResult.cs
- EventMap.cs
- Win32SafeHandles.cs
- SecurityPolicySection.cs
- EntityDataSourceWizardForm.cs
- TextSchema.cs
- UntypedNullExpression.cs