CodeStatement.cs 633 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. //
  2. // System.CodeDom CodeStatement class implementation
  3. //
  4. // Author:
  5. // Sean MacIsaac ([email protected])
  6. // Daniel Stodden ([email protected])
  7. //
  8. // (C) 2001 Ximian, Inc.
  9. //
  10. using System.Runtime.InteropServices;
  11. namespace System.CodeDom
  12. {
  13. [Serializable]
  14. [ClassInterface(ClassInterfaceType.AutoDispatch)]
  15. [ComVisible(true)]
  16. public class CodeStatement
  17. : CodeObject
  18. {
  19. private CodeLinePragma linePragma;
  20. //
  21. // Constructors
  22. //
  23. public CodeStatement()
  24. {
  25. }
  26. //
  27. // Properties
  28. //
  29. public CodeLinePragma LinePragma {
  30. get {
  31. return linePragma;
  32. }
  33. set {
  34. linePragma = value;
  35. }
  36. }
  37. }
  38. }