| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- //
- // System.CodeDom CodeConstructor Class implementation
- //
- // Author:
- // Miguel de Icaza ([email protected])
- //
- // (C) 2001 Ximian, Inc.
- //
- namespace System.CodeDom {
- public class CodeConstructor : CodeMemberMethod {
- CodeExpressionCollection baseConstructorArgs;
- CodeExpressionCollection chainedConstructorArgs;
-
- //
- // Constructors
- //
- public CodeConstructor ()
- {
- }
- public CodeExpressionCollection BaseConstructorArgs {
- get {
- return baseConstructorArgs;
- }
- set {
- baseConstructorArgs = value;
- }
- }
- public CodeExpressionCollection ChainedConstructorArgs {
- get {
- return chainedConstructorArgs;
- }
- set {
- chainedConstructorArgs = value;
- }
- }
- }
- }
|