mscorlib(4.0.0.0) API with additions
CodeCommentStatement.cs
1
using
System
.
Runtime
.
InteropServices
;
2
3
namespace
System.CodeDom
4
{
6
[
Serializable
]
7
[ClassInterface(
ClassInterfaceType
.AutoDispatch)]
8
[ComVisible(
true
)]
9
public
class
CodeCommentStatement
:
CodeStatement
10
{
11
private
CodeComment
comment;
12
15
public
CodeComment
Comment
16
{
17
get
18
{
19
return
comment;
20
}
21
set
22
{
23
comment = value;
24
}
25
}
26
28
public
CodeCommentStatement
()
29
{
30
}
31
34
public
CodeCommentStatement
(
CodeComment
comment)
35
{
36
this.comment = comment;
37
}
38
41
public
CodeCommentStatement
(
string
text)
42
{
43
comment =
new
CodeComment
(text);
44
}
45
50
public
CodeCommentStatement
(
string
text,
bool
docComment)
51
{
52
comment =
new
CodeComment
(text, docComment);
53
}
54
}
55
}
System.Runtime.InteropServices
Definition:
_Activator.cs:1
System.Runtime
Definition:
AssemblyTargetedPatchBandAttribute.cs:1
System
Definition:
__Canon.cs:3
System.CodeDom.CodeCommentStatement.CodeCommentStatement
CodeCommentStatement()
Initializes a new instance of the T:System.CodeDom.CodeCommentStatement class.
Definition:
CodeCommentStatement.cs:28
System.CodeDom.CodeCommentStatement.CodeCommentStatement
CodeCommentStatement(CodeComment comment)
Initializes a new instance of the T:System.CodeDom.CodeCommentStatement class using the specified com...
Definition:
CodeCommentStatement.cs:34
System.CodeDom.CodeCommentStatement
Represents a statement consisting of a single comment.
Definition:
CodeCommentStatement.cs:9
System.CodeDom.CodeComment
Represents a comment.
Definition:
CodeComment.cs:9
System.Reflection.TypeAttributes.Serializable
Specifies that the class can be serialized.
System.Runtime.InteropServices.ClassInterfaceType
ClassInterfaceType
Identifies the type of class interface that is generated for a class.
Definition:
ClassInterfaceType.cs:7
System.CodeDom.CodeStatement
Represents the abstract base class from which all code statements derive.
Definition:
CodeStatement.cs:10
System.CodeDom.CodeCommentStatement.CodeCommentStatement
CodeCommentStatement(string text)
Initializes a new instance of the T:System.CodeDom.CodeCommentStatement class using the specified tex...
Definition:
CodeCommentStatement.cs:41
System.CodeDom
Definition:
CodeArgumentReferenceExpression.cs:3
System.CodeDom.CodeCommentStatement.CodeCommentStatement
CodeCommentStatement(string text, bool docComment)
Initializes a new instance of the T:System.CodeDom.CodeCommentStatement class using the specified tex...
Definition:
CodeCommentStatement.cs:50
System.CodeDom.CodeCommentStatement.Comment
CodeComment Comment
Gets or sets the contents of the comment.
Definition:
CodeCommentStatement.cs:16
All cs
System.CodeDom
CodeCommentStatement.cs
Generated by
1.8.15