Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / CompMod / System / CodeDOM / CodeArrayIndexerExpression.cs / 1305376 / CodeArrayIndexerExpression.cs
//------------------------------------------------------------------------------
//
//
// [....]
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//-----------------------------------------------------------------------------
namespace System.CodeDom {
using System.Diagnostics;
using System;
using Microsoft.Win32;
using System.Collections;
using System.Runtime.InteropServices;
///
///
/// Represents an array indexer expression.
///
///
[
ClassInterface(ClassInterfaceType.AutoDispatch),
ComVisible(true),
Serializable,
]
public class CodeArrayIndexerExpression : CodeExpression {
private CodeExpression targetObject;
private CodeExpressionCollection indices;
///
/// [To be supplied.]
///
public CodeArrayIndexerExpression() {
}
///
/// [To be supplied.]
///
public CodeArrayIndexerExpression(CodeExpression targetObject, params CodeExpression[] indices) {
this.targetObject = targetObject;
this.indices = new CodeExpressionCollection();
this.indices.AddRange(indices);
}
///
/// [To be supplied.]
///
public CodeExpression TargetObject {
get {
return targetObject;
}
set {
targetObject = value;
}
}
///
/// [To be supplied.]
///
public CodeExpressionCollection Indices {
get {
if (indices == null) {
indices = new CodeExpressionCollection();
}
return indices;
}
}
}
}
// 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
- MethodCallConverter.cs
- LOSFormatter.cs
- Button.cs
- DataTable.cs
- MultiBindingExpression.cs
- StructureChangedEventArgs.cs
- ColorAnimationUsingKeyFrames.cs
- ListenerPerfCounters.cs
- XmlILOptimizerVisitor.cs
- XPathArrayIterator.cs
- ClientConvert.cs
- HttpDictionary.cs
- ParameterReplacerVisitor.cs
- BooleanFunctions.cs
- QueueProcessor.cs
- DynamicField.cs
- _SingleItemRequestCache.cs
- ConnectionsZone.cs
- Predicate.cs
- ClientRuntimeConfig.cs
- SafeIUnknown.cs
- DetailsViewUpdatedEventArgs.cs
- QilNode.cs
- ImageResources.Designer.cs
- Ray3DHitTestResult.cs
- StatusBarPanelClickEvent.cs
- SystemInfo.cs
- PropertyFilterAttribute.cs
- ConfigurationSection.cs
- DetailsViewRowCollection.cs
- DataGridViewCellStyle.cs
- ExtendedPropertyDescriptor.cs
- HuffCodec.cs
- DataBinder.cs
- BeginEvent.cs
- TimeSpanStorage.cs
- SimpleHandlerBuildProvider.cs
- XamlTypeMapper.cs
- HttpHeaderCollection.cs
- CodeArrayCreateExpression.cs
- Size3DValueSerializer.cs
- UInt32Converter.cs
- OperatingSystem.cs
- RotateTransform3D.cs
- UrlMappingCollection.cs
- WebPartConnectionsConnectVerb.cs
- DocumentPageView.cs
- SortedSet.cs
- LinqDataSourceDisposeEventArgs.cs
- TypeGeneratedEventArgs.cs
- XhtmlTextWriter.cs
- OdbcConnectionStringbuilder.cs
- DispatcherHookEventArgs.cs
- CopyNamespacesAction.cs
- DataBindingList.cs
- CodeCatchClauseCollection.cs
- QilTypeChecker.cs
- TextDocumentView.cs
- IndependentlyAnimatedPropertyMetadata.cs
- URLMembershipCondition.cs
- SqlBuilder.cs
- ClientRuntimeConfig.cs
- SqlXmlStorage.cs
- Attribute.cs
- BindingCompleteEventArgs.cs
- EntityClientCacheKey.cs
- _Connection.cs
- Rect3D.cs
- InstallerTypeAttribute.cs
- HttpFormatExtensions.cs
- GlobalEventManager.cs
- IPEndPoint.cs
- TailPinnedEventArgs.cs
- XmlNodeComparer.cs
- FragmentQueryProcessor.cs
- Table.cs
- StringConverter.cs
- OdbcConnectionStringbuilder.cs
- DynamicArgumentDialog.cs
- FamilyMapCollection.cs
- GridViewRowCollection.cs
- InvalidPrinterException.cs
- PrintPageEvent.cs
- TextBoxAutoCompleteSourceConverter.cs
- embossbitmapeffect.cs
- FontFaceLayoutInfo.cs
- CodeIdentifier.cs
- ZipIOLocalFileHeader.cs
- HtmlInputReset.cs
- OutputWindow.cs
- Timeline.cs
- ToolboxComponentsCreatingEventArgs.cs
- DataColumnCollection.cs
- counter.cs
- _NativeSSPI.cs
- OLEDB_Util.cs
- CssStyleCollection.cs
- Matrix.cs
- WebPartMenu.cs
- ImagingCache.cs