CodeCommentStatement Class
.NET Framework 2.0
Represents a statement consisting of a single comment.
Namespace: System.CodeDom
Assembly: System (in system.dll)
Assembly: System (in system.dll)
'Declaration <SerializableAttribute> _ <ComVisibleAttribute(True)> _ <ClassInterfaceAttribute(ClassInterfaceType.AutoDispatch)> _ Public Class CodeCommentStatement Inherits CodeStatement 'Usage Dim instance As CodeCommentStatement
/** @attribute SerializableAttribute() */ /** @attribute ComVisibleAttribute(true) */ /** @attribute ClassInterfaceAttribute(ClassInterfaceType.AutoDispatch) */ public class CodeCommentStatement extends CodeStatement
SerializableAttribute ComVisibleAttribute(true) ClassInterfaceAttribute(ClassInterfaceType.AutoDispatch) public class CodeCommentStatement extends CodeStatement
Not applicable.
CodeCommentStatement can be used to represent a single-line comment statement. CodeCommentStatement is a statement, so it can be inserted into a statements collection and will appear on its own line. CodeCommentStatement can also be added to the comments collection of CodeNamespace or any object that derives from CodeTypeMember.
This example demonstrates using a CodeCommentStatement to represent a comment in source code.
' Create a CodeComment with some example comment text. Dim comment As New CodeComment( _ "This comment was generated from a System.CodeDom.CodeComment", _ False) ' Whether the comment is a documentation comment. ' Create a CodeCommentStatement that contains the comment, in order ' to add the comment to a CodeTypeDeclaration Members collection. Dim commentStatement As New CodeCommentStatement(comment) ' A Visual Basic code generator produces the following source code for the preceeding example code: ' 'This comment was generated from a System.CodeDom.CodeComment
// Create a CodeComment with some example comment text.
CodeComment comment = new CodeComment("This comment was generated "
+ "from a System.CodeDom.CodeComment", false);
// The text of the comment.
// Whether the comment is a comment intended for documentation purposes.
// Create a CodeCommentStatement that contains the comment, in order
// to add the comment to a CodeTypeDeclaration Members collection.
CodeCommentStatement commentStatement = new
CodeCommentStatement(comment);
// A VJ# code generator produces the following source code for the
// preceeding example code:
// This comment was generated from a System.CodeDom.CodeComment
System.Object
System.CodeDom.CodeObject
System.CodeDom.CodeStatement
System.CodeDom.CodeCommentStatement
System.CodeDom.CodeObject
System.CodeDom.CodeStatement
System.CodeDom.CodeCommentStatement
Windows 98, Windows Server 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.Community Additions
ADD
Show: