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
- SqlWebEventProvider.cs
- TransformPattern.cs
- ReferenceEqualityComparer.cs
- MetadataSource.cs
- RelationshipDetailsRow.cs
- RemotingHelper.cs
- Rect.cs
- PackWebRequest.cs
- CompilerError.cs
- CodeNamespace.cs
- HierarchicalDataTemplate.cs
- SortedSet.cs
- DataGridViewCellStyle.cs
- DeviceContext.cs
- ToolStripSystemRenderer.cs
- MethodRental.cs
- TerminatorSinks.cs
- CodeExporter.cs
- SortKey.cs
- SqlHelper.cs
- ConcurrencyBehavior.cs
- Soap12ProtocolReflector.cs
- ProcessHostServerConfig.cs
- SpeechRecognitionEngine.cs
- NamedObject.cs
- SpeechDetectedEventArgs.cs
- CanonicalizationDriver.cs
- DragEventArgs.cs
- MULTI_QI.cs
- ObjectDataSourceDisposingEventArgs.cs
- TemplateControlBuildProvider.cs
- RoleGroupCollection.cs
- PresentationAppDomainManager.cs
- Int32Converter.cs
- PaginationProgressEventArgs.cs
- WizardForm.cs
- XmlEntityReference.cs
- TypeDelegator.cs
- MachineKeyConverter.cs
- SqlUserDefinedTypeAttribute.cs
- FormatException.cs
- HeaderUtility.cs
- FlowDocumentPaginator.cs
- CuspData.cs
- RayHitTestParameters.cs
- HttpProcessUtility.cs
- SafeProcessHandle.cs
- XmlCompatibilityReader.cs
- SQLUtility.cs
- ServiceDescriptionContext.cs
- IApplicationTrustManager.cs
- RegexCompilationInfo.cs
- XmlDocument.cs
- TypeProvider.cs
- EmbeddedMailObjectsCollection.cs
- WebPartConnection.cs
- PolyBezierSegment.cs
- SaveFileDialog.cs
- FixedSOMTextRun.cs
- PackWebResponse.cs
- SuppressMergeCheckAttribute.cs
- StringToken.cs
- WindowsStatic.cs
- CodeMethodMap.cs
- GridViewPageEventArgs.cs
- ByeOperationCD1AsyncResult.cs
- UnsafeNetInfoNativeMethods.cs
- BinaryUtilClasses.cs
- CodeCastExpression.cs
- DocumentXmlWriter.cs
- BoundField.cs
- TextEditorMouse.cs
- HiddenFieldPageStatePersister.cs
- SchemaCollectionPreprocessor.cs
- WindowsToolbarItemAsMenuItem.cs
- StorageConditionPropertyMapping.cs
- EntryPointNotFoundException.cs
- DrawItemEvent.cs
- DataContractSerializerOperationGenerator.cs
- EdgeModeValidation.cs
- TextRange.cs
- HttpCachePolicyWrapper.cs
- SiteMapPath.cs
- Latin1Encoding.cs
- DefaultValueAttribute.cs
- TransactionsSectionGroup.cs
- ContainerActivationHelper.cs
- InvalidateEvent.cs
- CryptoStream.cs
- WrappedKeySecurityTokenParameters.cs
- ErrorLog.cs
- DisplayNameAttribute.cs
- InitializationEventAttribute.cs
- PropertyInfoSet.cs
- IntranetCredentialPolicy.cs
- TransformerTypeCollection.cs
- AllMembershipCondition.cs
- LicenseContext.cs
- RTLAwareMessageBox.cs
- DataKey.cs