Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'mcs/class/System/System.CodeDom/CodeComment.cs')
-rw-r--r--mcs/class/System/System.CodeDom/CodeComment.cs62
1 files changed, 0 insertions, 62 deletions
diff --git a/mcs/class/System/System.CodeDom/CodeComment.cs b/mcs/class/System/System.CodeDom/CodeComment.cs
deleted file mode 100644
index 8f761110ee8..00000000000
--- a/mcs/class/System/System.CodeDom/CodeComment.cs
+++ /dev/null
@@ -1,62 +0,0 @@
-//
-// System.CodeDom CodeComment Class implementation
-//
-// Author:
-// Daniel Stodden (stodden@in.tum.de)
-//
-// (C) 2002 Ximian, Inc.
-//
-
-using System.Runtime.InteropServices;
-
-namespace System.CodeDom
-{
- [Serializable]
- [ClassInterface(ClassInterfaceType.AutoDispatch)]
- [ComVisible(true)]
- public class CodeComment
- : CodeObject
- {
- private bool docComment;
- private string text;
-
- //
- // Constructors
- //
- public CodeComment()
- {
- }
-
- public CodeComment( string text )
- {
- this.text = text;
- }
-
- public CodeComment( string text, bool docComment )
- {
- this.text = text;
- this.docComment = docComment;
- }
-
- //
- // Properties
- //
- public bool DocComment {
- get {
- return docComment;
- }
- set {
- docComment = value;
- }
- }
-
- public string Text {
- get {
- return text;
- }
- set {
- text = value;
- }
- }
- }
-}