CodeConstructor.cs 714 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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. public class CodeConstructor : CodeMemberMethod {
  11. CodeExpressionCollection baseConstructorArgs;
  12. CodeExpressionCollection chainedConstructorArgs;
  13. //
  14. // Constructors
  15. //
  16. public CodeConstructor ()
  17. {
  18. }
  19. public CodeExpressionCollection BaseConstructorArgs {
  20. get {
  21. return baseConstructorArgs;
  22. }
  23. set {
  24. baseConstructorArgs = value;
  25. }
  26. }
  27. public CodeExpressionCollection ChainedConstructorArgs {
  28. get {
  29. return chainedConstructorArgs;
  30. }
  31. set {
  32. chainedConstructorArgs = value;
  33. }
  34. }
  35. }
  36. }