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
- SqlCommandSet.cs
- Util.cs
- TypeToken.cs
- XmlHelper.cs
- SafeCertificateContext.cs
- TextBox.cs
- XmlObjectSerializerWriteContextComplex.cs
- SafeViewOfFileHandle.cs
- XmlTextReaderImplHelpers.cs
- SynchronizingStream.cs
- GeneralTransform3DGroup.cs
- XhtmlBasicValidationSummaryAdapter.cs
- TextFormattingConverter.cs
- MethodResolver.cs
- SettingsAttributes.cs
- RtfToXamlReader.cs
- SqlClientMetaDataCollectionNames.cs
- SID.cs
- RegexNode.cs
- JsonEncodingStreamWrapper.cs
- ServiceModelDictionary.cs
- TextServicesDisplayAttributePropertyRanges.cs
- DataGridViewRowHeightInfoNeededEventArgs.cs
- ColorConvertedBitmapExtension.cs
- TemplateComponentConnector.cs
- Trace.cs
- DashStyle.cs
- FontResourceCache.cs
- TreeViewDesigner.cs
- MonitoringDescriptionAttribute.cs
- Queue.cs
- SpecialFolderEnumConverter.cs
- Storyboard.cs
- DynamicDataRouteHandler.cs
- TemplatedWizardStep.cs
- ImageSourceConverter.cs
- CacheOutputQuery.cs
- DataStreams.cs
- SecureUICommand.cs
- WebPartConnectionsEventArgs.cs
- ping.cs
- CacheMode.cs
- ManualWorkflowSchedulerService.cs
- MatchingStyle.cs
- HttpHeaderCollection.cs
- HostingEnvironmentException.cs
- EntityDataSourceUtil.cs
- PropertySegmentSerializer.cs
- WebPartAddingEventArgs.cs
- AudioLevelUpdatedEventArgs.cs
- CookielessHelper.cs
- AuthenticationSection.cs
- DbConnectionStringBuilder.cs
- QueueTransferProtocol.cs
- SafeSecurityHandles.cs
- PerfCounterSection.cs
- XmlSchemaNotation.cs
- WebControl.cs
- AutoGeneratedFieldProperties.cs
- ObjectDataSourceStatusEventArgs.cs
- BuiltInExpr.cs
- Renderer.cs
- MasterPageParser.cs
- DbConnectionInternal.cs
- Application.cs
- ClientSponsor.cs
- TreeBuilderBamlTranslator.cs
- AssemblyGen.cs
- SafeThemeHandle.cs
- WebPartConnectionsConfigureVerb.cs
- TargetException.cs
- LinearQuaternionKeyFrame.cs
- TextParagraphView.cs
- Mapping.cs
- SmiContext.cs
- documentsequencetextview.cs
- ScriptResourceDefinition.cs
- SQLByteStorage.cs
- ListViewEditEventArgs.cs
- SpecialNameAttribute.cs
- SafeArrayTypeMismatchException.cs
- UnsafeNativeMethods.cs
- TextElementEnumerator.cs
- StickyNote.cs
- Resources.Designer.cs
- Expressions.cs
- MexTcpBindingCollectionElement.cs
- FontWeight.cs
- TableRowCollection.cs
- PriorityBindingExpression.cs
- UserInitiatedRoutedEventPermission.cs
- ScriptComponentDescriptor.cs
- Freezable.cs
- WindowVisualStateTracker.cs
- RectAnimationBase.cs
- AgileSafeNativeMemoryHandle.cs
- MetadataExchangeClient.cs
- RegexTree.cs
- SimpleApplicationHost.cs
- RootProjectionNode.cs