Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / CompMod / System / CodeDOM / CodeArrayIndexerExpression.cs / 1305376 / CodeArrayIndexerExpression.cs
//------------------------------------------------------------------------------ //// // //----------------------------------------------------------------------------- namespace System.CodeDom { using System.Diagnostics; using System; using Microsoft.Win32; using System.Collections; using System.Runtime.InteropServices; ///[....] // Copyright (c) Microsoft Corporation. All rights reserved. ///// [ 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; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.[To be supplied.] ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ExpressionBindings.cs
- ElementHostPropertyMap.cs
- SchemaNamespaceManager.cs
- LZCodec.cs
- SmtpNetworkElement.cs
- TextServicesDisplayAttributePropertyRanges.cs
- SpellCheck.cs
- HttpPostServerProtocol.cs
- StreamMarshaler.cs
- SecurityElementBase.cs
- SHA384.cs
- QuaternionAnimation.cs
- TextElement.cs
- AliasedExpr.cs
- WorkflowInlining.cs
- TrackBarDesigner.cs
- DataBoundControlHelper.cs
- Light.cs
- TripleDESCryptoServiceProvider.cs
- SqlRowUpdatingEvent.cs
- MessageFormatterConverter.cs
- ClientSideQueueItem.cs
- ConstructorNeedsTagAttribute.cs
- FileRecordSequenceCompletedAsyncResult.cs
- dataobject.cs
- CategoryNameCollection.cs
- SqlStream.cs
- WebPartManagerDesigner.cs
- IDataContractSurrogate.cs
- OLEDB_Enum.cs
- AsymmetricKeyExchangeFormatter.cs
- GraphicsContext.cs
- log.cs
- EntityProviderFactory.cs
- Positioning.cs
- TextParagraphProperties.cs
- ButtonAutomationPeer.cs
- StyleSheet.cs
- UserNameSecurityToken.cs
- BlockUIContainer.cs
- TypeBuilder.cs
- NamespaceInfo.cs
- ScrollViewer.cs
- WindowsTokenRoleProvider.cs
- dtdvalidator.cs
- ServiceModelInstallComponent.cs
- Configuration.cs
- SoapTypeAttribute.cs
- WorkflowMarkupSerializerMapping.cs
- XmlDictionaryReader.cs
- TextViewDesigner.cs
- namescope.cs
- BeginEvent.cs
- Random.cs
- DataListItemEventArgs.cs
- Touch.cs
- EncoderFallback.cs
- OleDbConnectionPoolGroupProviderInfo.cs
- PointLight.cs
- VirtualizedContainerService.cs
- XmlAttributeCache.cs
- ManagementEventArgs.cs
- CallbackValidatorAttribute.cs
- ExpanderAutomationPeer.cs
- ErrorStyle.cs
- BuildProvider.cs
- OpCodes.cs
- BatchWriter.cs
- UserControlParser.cs
- ConsumerConnectionPointCollection.cs
- EntityContainerEntitySet.cs
- PlainXmlWriter.cs
- ObsoleteAttribute.cs
- PixelFormat.cs
- ContentElement.cs
- SelectionPatternIdentifiers.cs
- LoginStatusDesigner.cs
- FormClosingEvent.cs
- DecoderBestFitFallback.cs
- EmptyQuery.cs
- EdmSchemaAttribute.cs
- Compiler.cs
- TextParagraph.cs
- HitTestParameters3D.cs
- XmlSchemaAny.cs
- ResourceDescriptionAttribute.cs
- TeredoHelper.cs
- ReadOnlyPermissionSet.cs
- InfoCardRSACryptoProvider.cs
- MimeObjectFactory.cs
- ContextStaticAttribute.cs
- ImageListUtils.cs
- AttachmentCollection.cs
- SecurityKeyIdentifier.cs
- XMLUtil.cs
- CopyOnWriteList.cs
- Transform.cs
- CalendarSelectionChangedEventArgs.cs
- ObjectRef.cs
- AlgoModule.cs