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
- TransportContext.cs
- VectorCollection.cs
- SerializerProvider.cs
- DesignerEditorPartChrome.cs
- XmlWrappingReader.cs
- WeakHashtable.cs
- Vertex.cs
- NumericUpDownAcceleration.cs
- MethodBody.cs
- UnsafeNativeMethods.cs
- RenderContext.cs
- Evaluator.cs
- AttributeInfo.cs
- Script.cs
- TemplateEditingVerb.cs
- FlowDocumentReaderAutomationPeer.cs
- WebPartPersonalization.cs
- SymbolUsageManager.cs
- LeaseManager.cs
- TreeNodeEventArgs.cs
- HtmlElementEventArgs.cs
- SetStoryboardSpeedRatio.cs
- DataGridViewRowHeaderCell.cs
- EnumerableCollectionView.cs
- ResourceSet.cs
- DetailsViewPageEventArgs.cs
- AttributeCollection.cs
- NetCodeGroup.cs
- EllipticalNodeOperations.cs
- ClassHandlersStore.cs
- ConditionalExpression.cs
- IdnElement.cs
- CombinedGeometry.cs
- Win32SafeHandles.cs
- XmlUnspecifiedAttribute.cs
- ByteFacetDescriptionElement.cs
- OutputCacheSettingsSection.cs
- MsmqDecodeHelper.cs
- SchemaInfo.cs
- LineServices.cs
- HttpValueCollection.cs
- TableNameAttribute.cs
- PrintEvent.cs
- CustomTypeDescriptor.cs
- newinstructionaction.cs
- CallbackValidator.cs
- PowerModeChangedEventArgs.cs
- UriParserTemplates.cs
- MenuItem.cs
- TextDocumentView.cs
- SafeEventLogWriteHandle.cs
- ApplicationProxyInternal.cs
- Internal.cs
- Regex.cs
- EncryptedKey.cs
- NoneExcludedImageIndexConverter.cs
- ResourceManager.cs
- MetadataUtil.cs
- Transform3DGroup.cs
- GraphicsPathIterator.cs
- DrawListViewColumnHeaderEventArgs.cs
- WorkflowTraceTransfer.cs
- DbConnectionFactory.cs
- TreeBuilderBamlTranslator.cs
- ByteConverter.cs
- Variant.cs
- figurelengthconverter.cs
- BindingListCollectionView.cs
- DataControlCommands.cs
- GridViewDesigner.cs
- KerberosSecurityTokenAuthenticator.cs
- CustomErrorsSection.cs
- IPPacketInformation.cs
- UnsettableComboBox.cs
- PageThemeParser.cs
- BuildProvider.cs
- RayHitTestParameters.cs
- PasswordDeriveBytes.cs
- XamlSerializationHelper.cs
- MediaPlayerState.cs
- ForAllOperator.cs
- XamlSerializerUtil.cs
- Logging.cs
- StringConcat.cs
- DataObjectSettingDataEventArgs.cs
- InstanceDataCollection.cs
- DrawingGroup.cs
- LookupNode.cs
- AssemblyResourceLoader.cs
- Bitmap.cs
- mactripleDES.cs
- ExecutionScope.cs
- Effect.cs
- TreeIterator.cs
- messageonlyhwndwrapper.cs
- OAVariantLib.cs
- ConnectionConsumerAttribute.cs
- XmlBoundElement.cs
- WebSysDisplayNameAttribute.cs
- DocumentReferenceCollection.cs