Code:
/ FX-1434 / FX-1434 / 1.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
- EdmItemError.cs
- DeviceContexts.cs
- CommandDevice.cs
- Number.cs
- SQLString.cs
- ElementUtil.cs
- DataRowCollection.cs
- PreloadedPackages.cs
- ProbeMatchesCD1.cs
- SortKey.cs
- PermissionAttributes.cs
- OdbcTransaction.cs
- ImageListDesigner.cs
- WebPartZone.cs
- PrintController.cs
- StringKeyFrameCollection.cs
- CurrentChangedEventManager.cs
- ControlBindingsCollection.cs
- MsmqIntegrationSecurityElement.cs
- CodeBlockBuilder.cs
- TransactionFlowBindingElement.cs
- CmsInterop.cs
- DetailsViewPagerRow.cs
- NullExtension.cs
- InternalMappingException.cs
- TextTreeUndo.cs
- SafeProcessHandle.cs
- RightsManagementSuppressedStream.cs
- DebugInfoGenerator.cs
- DocumentOrderQuery.cs
- ReflectionUtil.cs
- MapPathBasedVirtualPathProvider.cs
- ConcurrentBag.cs
- PageAsyncTaskManager.cs
- SByte.cs
- CustomExpression.cs
- AssemblyGen.cs
- WmlValidatorAdapter.cs
- MulticastDelegate.cs
- BasePattern.cs
- TrustManager.cs
- ThousandthOfEmRealPoints.cs
- ResourceType.cs
- ItemCheckEvent.cs
- DebugView.cs
- ObjectListCommandEventArgs.cs
- JsonWriter.cs
- MulticastDelegate.cs
- EntityCollection.cs
- TextEditorParagraphs.cs
- GridViewRowEventArgs.cs
- EntityDataSourceSelectedEventArgs.cs
- ElementUtil.cs
- CodeVariableReferenceExpression.cs
- DomainConstraint.cs
- ElementUtil.cs
- XmlDomTextWriter.cs
- KeyedHashAlgorithm.cs
- Timer.cs
- InkPresenterAutomationPeer.cs
- PermissionListSet.cs
- ArgumentValue.cs
- Equal.cs
- QilTypeChecker.cs
- IgnoreSectionHandler.cs
- Authorization.cs
- FunctionDescription.cs
- UserControl.cs
- TextEditorMouse.cs
- TextRangeEditTables.cs
- ConfigurationSchemaErrors.cs
- DbDeleteCommandTree.cs
- ProtocolViolationException.cs
- DataDocumentXPathNavigator.cs
- BufferedStream.cs
- XDeferredAxisSource.cs
- UIElement.cs
- DataGridViewCellMouseEventArgs.cs
- ObjectItemCachedAssemblyLoader.cs
- XPathParser.cs
- WebControlParameterProxy.cs
- Setter.cs
- ValidatorCollection.cs
- IpcClientManager.cs
- BoundColumn.cs
- TileBrush.cs
- CutCopyPasteHelper.cs
- RuleSetDialog.Designer.cs
- Triangle.cs
- HttpBrowserCapabilitiesBase.cs
- IHttpResponseInternal.cs
- RenameRuleObjectDialog.cs
- BooleanAnimationUsingKeyFrames.cs
- KeyToListMap.cs
- GuidelineCollection.cs
- EnvironmentPermission.cs
- RoleServiceManager.cs
- InlineUIContainer.cs
- NameTable.cs
- UriSectionData.cs