Fixed all sorts of compiler errors.
[mono.git] / mcs / class / System / System.CodeDom / CodeCommentStatement.cs
1 //
2 // System.CodeDom CodeCommentStatement Class implementation
3 //
4 // Author:
5 //   Miguel de Icaza (miguel@ximian.com)
6 //
7 // (C) 2001 Ximian, Inc.
8 //
9
10 namespace System.CodeDom {
11
12         public class CodeCommentStatement : CodeStatement {
13                 string text;
14                 
15                 //
16                 // Constructors
17                 //
18                 public CodeCommentStatement ()
19                 {
20                 }
21
22                 public CodeCommentStatement (string text)
23                 {
24                         this.text = text;
25                 }
26
27                 string Text {
28                         get {
29                                 return text;
30                         }
31
32                         set {
33                                 text = value;
34                         }
35                 }
36         }
37 }
38
39