Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / CompMod / System / CodeDOM / CodeIndexerExpression.cs / 1305376 / CodeIndexerExpression.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 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; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007./// Gets or sets /// the index. /// ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- OpenFileDialog.cs
- TraceEventCache.cs
- VectorAnimationUsingKeyFrames.cs
- PeerInvitationResponse.cs
- Double.cs
- RemoteCryptoDecryptRequest.cs
- FileDialogCustomPlace.cs
- ClosureBinding.cs
- SystemInfo.cs
- ToolBarTray.cs
- DbTransaction.cs
- PreservationFileWriter.cs
- SecurityPolicySection.cs
- StylusPointPropertyInfo.cs
- EventLog.cs
- SafeNativeMethods.cs
- PenCursorManager.cs
- ClientTarget.cs
- ConfigurationProperty.cs
- BrowserCapabilitiesFactory.cs
- UIElementParaClient.cs
- SkinBuilder.cs
- ConfigurationValues.cs
- ShaperBuffers.cs
- TraceContextRecord.cs
- WebPartMovingEventArgs.cs
- DataTableMappingCollection.cs
- Vector3DIndependentAnimationStorage.cs
- WebGetAttribute.cs
- SHA512Managed.cs
- TextTreeRootTextBlock.cs
- SiteMapHierarchicalDataSourceView.cs
- OutArgument.cs
- ValidationSummary.cs
- SQLSingle.cs
- ArcSegment.cs
- LiteralSubsegment.cs
- HebrewNumber.cs
- IdnMapping.cs
- Base64Decoder.cs
- TypedReference.cs
- SystemFonts.cs
- DataSourceDesigner.cs
- MeshGeometry3D.cs
- EmptyTextWriter.cs
- InputReport.cs
- DataGridViewRowCancelEventArgs.cs
- EdmComplexPropertyAttribute.cs
- ScriptRegistrationManager.cs
- SuspendDesigner.cs
- XPathMultyIterator.cs
- Formatter.cs
- ManipulationDelta.cs
- Comparer.cs
- MimeMapping.cs
- ValidationSettings.cs
- DbSetClause.cs
- XmlWrappingReader.cs
- Action.cs
- ArrangedElement.cs
- SafeNativeMethods.cs
- QueueProcessor.cs
- CommandConverter.cs
- ToolStripPanel.cs
- SingleAnimationBase.cs
- UnmanagedMarshal.cs
- TextServicesCompartmentEventSink.cs
- ProfileEventArgs.cs
- CompressedStack.cs
- DesignBindingPicker.cs
- CfgRule.cs
- ConfigXmlCDataSection.cs
- HttpContextServiceHost.cs
- CodeGenerator.cs
- ControllableStoryboardAction.cs
- QuaternionIndependentAnimationStorage.cs
- HandlerFactoryWrapper.cs
- MarkupCompilePass1.cs
- PropertyBuilder.cs
- CodeDirectiveCollection.cs
- ApplicationSecurityInfo.cs
- Comparer.cs
- MessageHeader.cs
- HtmlTableRow.cs
- OleDbPermission.cs
- VScrollProperties.cs
- Point3DAnimationBase.cs
- DetailsViewDeletedEventArgs.cs
- SafeIUnknown.cs
- BehaviorEditorPart.cs
- DocumentViewerAutomationPeer.cs
- ButtonChrome.cs
- ConfigurationPropertyCollection.cs
- GZipDecoder.cs
- FormsAuthenticationUser.cs
- RichTextBoxContextMenu.cs
- AvTrace.cs
- IdentityManager.cs
- RPIdentityRequirement.cs
- CommandBinding.cs