Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / CompMod / System / CodeDOM / CodeIndexerExpression.cs / 1 / CodeIndexerExpression.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 CodeIndexerExpression : CodeExpression { private CodeExpression targetObject; private CodeExpressionCollection indices; ////// Represents an array indexer expression. /// ////// public CodeIndexerExpression() { } ////// Initializes a new instance of ///. /// /// public CodeIndexerExpression(CodeExpression targetObject, params CodeExpression[] indices) { this.targetObject = targetObject; this.indices = new CodeExpressionCollection(); this.indices.AddRange(indices); } ////// Initializes a new instance of ///using the specified target /// object and index. /// /// public CodeExpression TargetObject { get { return targetObject; } set { targetObject = value; } } ////// Gets or sets /// the target object. /// ////// public CodeExpressionCollection Indices { get { if (indices == null) { indices = new CodeExpressionCollection(); } return indices; } } } }/// Gets or sets /// the index. /// ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- MultiView.cs
- ControlEvent.cs
- DispatchWrapper.cs
- SqlCachedBuffer.cs
- WindowsIdentity.cs
- TableRowCollection.cs
- MenuItemStyle.cs
- TaskForm.cs
- WebScriptEnablingElement.cs
- DbProviderServices.cs
- GridView.cs
- AutomationTextAttribute.cs
- AppDomainUnloadedException.cs
- EditCommandColumn.cs
- ProjectionCamera.cs
- EditorPartChrome.cs
- TypedLocationWrapper.cs
- XmlWrappingWriter.cs
- HttpContextBase.cs
- CompiledELinqQueryState.cs
- DataPagerFieldItem.cs
- ConstrainedDataObject.cs
- FileEnumerator.cs
- SrgsElement.cs
- PasswordDeriveBytes.cs
- TypeElementCollection.cs
- EventListener.cs
- CaseInsensitiveHashCodeProvider.cs
- MultipartContentParser.cs
- ServiceBuildProvider.cs
- dbenumerator.cs
- VSDExceptions.cs
- AttributeProviderAttribute.cs
- SystemThemeKey.cs
- XmlNodeChangedEventArgs.cs
- ParameterCollection.cs
- connectionpool.cs
- EditorPartCollection.cs
- TemplateBindingExtension.cs
- UpdatePanelControlTrigger.cs
- InputEventArgs.cs
- PropertyCollection.cs
- CasesDictionary.cs
- SchemaImporterExtensionElementCollection.cs
- MatchNoneMessageFilter.cs
- SmtpTransport.cs
- ReferenceConverter.cs
- CompletionProxy.cs
- JoinGraph.cs
- TypedReference.cs
- ByteConverter.cs
- DateTimeOffsetConverter.cs
- TreeIterator.cs
- ExceptionWrapper.cs
- Point4D.cs
- DescendantQuery.cs
- ToolStripItem.cs
- BuildProviderAppliesToAttribute.cs
- SQLSingleStorage.cs
- PointAnimation.cs
- Style.cs
- QueryCursorEventArgs.cs
- SQLInt16Storage.cs
- XmlCharCheckingReader.cs
- ColumnResizeAdorner.cs
- CompilerScopeManager.cs
- XPathException.cs
- CredentialSelector.cs
- WebConfigurationManager.cs
- FloaterBaseParagraph.cs
- HtmlControl.cs
- ReadOnlyDictionary.cs
- DPTypeDescriptorContext.cs
- WebPartHelpVerb.cs
- UnsettableComboBox.cs
- TrackingServices.cs
- NamespaceDecl.cs
- COM2FontConverter.cs
- XmlSchemaSequence.cs
- CodeArgumentReferenceExpression.cs
- EntitySqlException.cs
- WebExceptionStatus.cs
- NonPrimarySelectionGlyph.cs
- HwndStylusInputProvider.cs
- CustomValidator.cs
- OpCellTreeNode.cs
- HMACSHA512.cs
- TextEndOfLine.cs
- ConfigurationConverterBase.cs
- TemplateColumn.cs
- XmlElement.cs
- CodeSubDirectoriesCollection.cs
- PopupRoot.cs
- CaseInsensitiveComparer.cs
- DataSourceProvider.cs
- SolidBrush.cs
- Focus.cs
- ScheduleChanges.cs
- CultureInfo.cs
- ResourceType.cs