CodeConstructor.cs 730 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. //
  2. // System.CodeDom CodeConstructor Class implementation
  3. //
  4. // Author:
  5. // Miguel de Icaza ([email protected])
  6. //
  7. // (C) 2001 Ximian, Inc.
  8. //
  9. namespace System.CodeDom {
  10. [Serializable]
  11. public class CodeConstructor : CodeMemberMethod {
  12. CodeExpressionCollection baseConstructorArgs;
  13. CodeExpressionCollection chainedConstructorArgs;
  14. //
  15. // Constructors
  16. //
  17. public CodeConstructor ()
  18. {
  19. }
  20. public CodeExpressionCollection BaseConstructorArgs {
  21. get {
  22. return baseConstructorArgs;
  23. }
  24. set {
  25. baseConstructorArgs = value;
  26. }
  27. }
  28. public CodeExpressionCollection ChainedConstructorArgs {
  29. get {
  30. return chainedConstructorArgs;
  31. }
  32. set {
  33. chainedConstructorArgs = value;
  34. }
  35. }
  36. }
  37. }