| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- //
- // System.CodeDom CodeArrayIndexerExpression Class implementation
- //
- // Author:
- // Daniel Stodden ([email protected])
- //
- // (C) 2002 Ximian, Inc.
- //
- using System.Runtime.InteropServices;
- namespace System.CodeDom {
- [Serializable]
- [ClassInterface(ClassInterfaceType.AutoDispatch)]
- [ComVisible(true)]
- public class CodeArrayIndexerExpression
- : CodeExpression
- {
- private CodeExpressionCollection indices;
- private CodeExpression targetObject;
- //
- // Constructors
- //
- public CodeArrayIndexerExpression()
- {
- }
- public CodeArrayIndexerExpression( CodeExpression targetObject, params CodeExpression[] indices )
- {
- this.targetObject = targetObject;
- this.Indices.AddRange( indices );
- }
- //
- // Properties
- //
- public CodeExpressionCollection Indices {
- get {
- if ( indices == null )
- indices = new CodeExpressionCollection();
- return indices;
- }
- }
- public CodeExpression TargetObject {
- get {
- return targetObject;
- }
- set {
- targetObject = value;
- }
- }
- }
- }
|