CodeLiteralStatement.cs 476 B

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