CodeCommentStatement.cs 503 B

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