CodeCommentStatement.cs 487 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. //
  2. // System.CodeDom CodeCommentStatement 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 CodeCommentStatement : CodeStatement {
  11. string text;
  12. //
  13. // Constructors
  14. //
  15. public CodeCommentStatement ()
  16. {
  17. }
  18. public CodeCommentStatement (string text)
  19. {
  20. this.text = text;
  21. }
  22. string Text {
  23. get {
  24. return text;
  25. }
  26. set {
  27. text = value;
  28. }
  29. }
  30. }
  31. }