CodeLiteralNamespace.cs 618 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. //
  2. // System.CodeDom CodeLiteralNamespace 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 CodeLiteralNamespace : CodeNamespace {
  11. CodeLinePragma linePragma;
  12. string value;
  13. //
  14. // Constructors
  15. //
  16. public CodeLiteralNamespace (string value)
  17. {
  18. this.value = value;
  19. }
  20. //
  21. // Properties
  22. //
  23. string Value {
  24. get {
  25. return value;
  26. }
  27. set {
  28. this.value = value;
  29. }
  30. }
  31. CodeLinePragma LinePragma {
  32. get {
  33. return linePragma;
  34. }
  35. set {
  36. linePragma = value;
  37. }
  38. }
  39. }
  40. }