| 123456789101112131415161718192021222324252627282930313233343536373839 |
- //
- // System.CodeDom CodeCommentStatement Class implementation
- //
- // Author:
- // Miguel de Icaza ([email protected])
- //
- // (C) 2001 Ximian, Inc.
- //
- namespace System.CodeDom {
- public class CodeCommentStatement : CodeStatement {
- string text;
-
- //
- // Constructors
- //
- public CodeCommentStatement ()
- {
- }
- public CodeCommentStatement (string text)
- {
- this.text = text;
- }
- string Text {
- get {
- return text;
- }
- set {
- text = value;
- }
- }
- }
- }
-
|