| 123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- //
- // System.CodeDom CodeConstructor Class implementation
- //
- // Author:
- // Miguel de Icaza ([email protected])
- // Daniel Stodden ([email protected])
- //
- // (C) 2001 Ximian, Inc.
- //
- using System.Runtime.InteropServices;
- namespace System.CodeDom
- {
- [Serializable]
- [ClassInterface(ClassInterfaceType.AutoDispatch)]
- [ComVisible(true)]
- public class CodeConstructor
- : CodeMemberMethod
- {
- private CodeExpressionCollection baseConstructorArgs;
- private CodeExpressionCollection chainedConstructorArgs;
-
- //
- // Properties
- //
- public CodeExpressionCollection BaseConstructorArgs {
- get {
- if ( baseConstructorArgs == null )
- baseConstructorArgs = new CodeExpressionCollection();
- return baseConstructorArgs;
- }
- }
- public CodeExpressionCollection ChainedConstructorArgs {
- get {
- if ( chainedConstructorArgs == null )
- chainedConstructorArgs = new CodeExpressionCollection();
- return chainedConstructorArgs;
- }
- }
- }
- }
|