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
- OleDragDropHandler.cs
- Dynamic.cs
- xmlglyphRunInfo.cs
- AddInPipelineAttributes.cs
- TabControl.cs
- HostUtils.cs
- QuinticEase.cs
- CrossAppDomainChannel.cs
- ListViewTableCell.cs
- SessionStateSection.cs
- PropertyItem.cs
- SchemaImporterExtensionElementCollection.cs
- TableRow.cs
- PerformanceCounterPermissionEntryCollection.cs
- Hash.cs
- ExtensibleClassFactory.cs
- ProfileModule.cs
- AddDataControlFieldDialog.cs
- StyleXamlParser.cs
- FixedTextContainer.cs
- OleDbErrorCollection.cs
- Bitmap.cs
- BaseTemplateCodeDomTreeGenerator.cs
- FontUnitConverter.cs
- HandleTable.cs
- HttpListener.cs
- AncestorChangedEventArgs.cs
- SqlTransaction.cs
- MultiSelectRootGridEntry.cs
- CacheHelper.cs
- EntityDataSourceDesignerHelper.cs
- InlineCollection.cs
- PagesChangedEventArgs.cs
- AttachedAnnotationChangedEventArgs.cs
- HGlobalSafeHandle.cs
- MemberDescriptor.cs
- oledbconnectionstring.cs
- PieceDirectory.cs
- PreviewKeyDownEventArgs.cs
- Color.cs
- SamlAttribute.cs
- PublisherMembershipCondition.cs
- ConversionHelper.cs
- MsmqOutputMessage.cs
- SqlNotificationRequest.cs
- _SafeNetHandles.cs
- HtmlInputSubmit.cs
- MouseButton.cs
- StylusTip.cs
- HeaderedItemsControl.cs
- ImmutableObjectAttribute.cs
- SerializationInfoEnumerator.cs
- x509store.cs
- PositiveTimeSpanValidator.cs
- UrlPath.cs
- PropertyOrder.cs
- HTTPAPI_VERSION.cs
- MetadataPropertyAttribute.cs
- ToolStripContentPanel.cs
- TypeDescriptionProvider.cs
- HtmlInputControl.cs
- RectIndependentAnimationStorage.cs
- TrackingMemoryStreamFactory.cs
- RedirectionProxy.cs
- AnnotationHelper.cs
- CodeDirectiveCollection.cs
- DataListGeneralPage.cs
- MaskedTextBoxDesignerActionList.cs
- SmtpAuthenticationManager.cs
- ExpressionBindingCollection.cs
- OutputScopeManager.cs
- MetadataUtilsSmi.cs
- MethodBody.cs
- EventRecord.cs
- InternalControlCollection.cs
- CharEnumerator.cs
- HttpEncoderUtility.cs
- Object.cs
- CurrentTimeZone.cs
- TokenBasedSet.cs
- TdsParser.cs
- EncoderParameter.cs
- BorderGapMaskConverter.cs
- RuleAttributes.cs
- SizeFConverter.cs
- BigInt.cs
- WsatServiceAddress.cs
- EntityParameter.cs
- WebPartConnection.cs
- MaskDescriptor.cs
- MenuAutomationPeer.cs
- HttpValueCollection.cs
- Completion.cs
- KeyboardEventArgs.cs
- WCFBuildProvider.cs
- QilSortKey.cs
- SymbolMethod.cs
- ButtonStandardAdapter.cs
- NavigationCommands.cs
- ServiceHttpHandlerFactory.cs