| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- //
- // System.CodeDom CodeStatement class implementation
- //
- // Author:
- // Sean MacIsaac ([email protected])
- // Daniel Stodden ([email protected])
- //
- // (C) 2001 Ximian, Inc.
- //
- using System.Runtime.InteropServices;
- namespace System.CodeDom
- {
- [Serializable]
- [ClassInterface(ClassInterfaceType.AutoDispatch)]
- [ComVisible(true)]
- public class CodeStatement
- : CodeObject
- {
- private CodeLinePragma linePragma;
-
- //
- // Constructors
- //
- public CodeStatement()
- {
- }
-
- //
- // Properties
- //
- public CodeLinePragma LinePragma {
- get {
- return linePragma;
- }
- set {
- linePragma = value;
- }
- }
- }
- }
|