Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / CompMod / System / CodeDOM / CodeArrayIndexerExpression.cs / 1 / 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; ////// [ ClassInterface(ClassInterfaceType.AutoDispatch), ComVisible(true), Serializable, ] public class CodeArrayIndexerExpression : CodeExpression { private CodeExpression targetObject; private CodeExpressionCollection indices; ////// Represents an array indexer expression. /// ////// 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; } } } }[To be supplied.] ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ElementsClipboardData.cs
- SchemaImporterExtensionElement.cs
- ExceptionNotification.cs
- RegexWriter.cs
- RoleManagerEventArgs.cs
- PlainXmlDeserializer.cs
- TypeElement.cs
- EntityWithKeyStrategy.cs
- WebEventCodes.cs
- TreeNodeEventArgs.cs
- WebPartEditorOkVerb.cs
- EntityDataSourceWizardForm.cs
- BadImageFormatException.cs
- DataQuery.cs
- SystemColors.cs
- SByte.cs
- WorkflowRuntimeServiceElement.cs
- Win32.cs
- OdbcCommand.cs
- VectorAnimationUsingKeyFrames.cs
- DataServiceProviderWrapper.cs
- NotifyParentPropertyAttribute.cs
- SqlGatherConsumedAliases.cs
- LambdaCompiler.Binary.cs
- Permission.cs
- FeatureSupport.cs
- SiteMapNodeCollection.cs
- BaseInfoTable.cs
- VisualTransition.cs
- RsaSecurityTokenParameters.cs
- XPathBinder.cs
- EntityProxyTypeInfo.cs
- ProgressBar.cs
- SmtpNegotiateAuthenticationModule.cs
- ProvideValueServiceProvider.cs
- TransactionFlowProperty.cs
- LayoutUtils.cs
- WebHeaderCollection.cs
- MediaPlayerState.cs
- ResourceManager.cs
- ConstructorArgumentAttribute.cs
- EntitySqlQueryCacheKey.cs
- ActivitySurrogateSelector.cs
- JpegBitmapDecoder.cs
- QilLoop.cs
- BoolExpression.cs
- SpanIndex.cs
- ISessionStateStore.cs
- XmlDictionaryReader.cs
- DynamicQueryableWrapper.cs
- ProcessModule.cs
- xamlnodes.cs
- SQLUtility.cs
- unitconverter.cs
- ControlOperationInvoker.cs
- SerialStream.cs
- TextSchema.cs
- DataGridViewDataErrorEventArgs.cs
- TableStyle.cs
- EventHandlerList.cs
- GraphicsState.cs
- SupportingTokenChannel.cs
- _HeaderInfoTable.cs
- ToolStripPanelSelectionBehavior.cs
- CharAnimationBase.cs
- safex509handles.cs
- SettingsPropertyNotFoundException.cs
- NativeRightsManagementAPIsStructures.cs
- EmbeddedMailObjectsCollection.cs
- SpecularMaterial.cs
- CacheVirtualItemsEvent.cs
- Mappings.cs
- Int64Converter.cs
- UserControlBuildProvider.cs
- AutomationPropertyInfo.cs
- ComplusEndpointConfigContainer.cs
- SerialStream.cs
- WizardSideBarListControlItem.cs
- String.cs
- ReadOnlyHierarchicalDataSource.cs
- DbModificationClause.cs
- EventListenerClientSide.cs
- PostBackOptions.cs
- StringInfo.cs
- ToolStripItem.cs
- ResourceWriter.cs
- MasterPageBuildProvider.cs
- X509Certificate.cs
- Sorting.cs
- DataColumnPropertyDescriptor.cs
- StructuredProperty.cs
- BamlLocalizableResource.cs
- TreeNodeStyleCollection.cs
- OracleTimeSpan.cs
- ObjectStateFormatter.cs
- ObjectDataProvider.cs
- WebDisplayNameAttribute.cs
- CellTreeNode.cs
- ClientTargetCollection.cs
- LookupBindingPropertiesAttribute.cs