다음을 통해 공유


CodeComment 클래스

정의

주석을 나타냅니다.

public ref class CodeComment : System::CodeDom::CodeObject
public class CodeComment : System.CodeDom.CodeObject
[System.Runtime.InteropServices.ClassInterface(System.Runtime.InteropServices.ClassInterfaceType.AutoDispatch)]
[System.Runtime.InteropServices.ComVisible(true)]
[System.Serializable]
public class CodeComment : System.CodeDom.CodeObject
type CodeComment = class
    inherit CodeObject
[<System.Runtime.InteropServices.ClassInterface(System.Runtime.InteropServices.ClassInterfaceType.AutoDispatch)>]
[<System.Runtime.InteropServices.ComVisible(true)>]
[<System.Serializable>]
type CodeComment = class
    inherit CodeObject
Public Class CodeComment
Inherits CodeObject
상속
CodeComment
특성

예제

이 예제에서는 CodeComment 사용하여 소스 코드에서 주석을 나타내는 방법을 보여 줍니다.

// Create a CodeComment with some example comment text.

// The text of the comment.
// Whether the comment is a comment intended for documentation purposes.
CodeComment^ comment = gcnew CodeComment( "This comment was generated from a System.CodeDom.CodeComment",false );

// Create a CodeCommentStatement that contains the comment, in order
// to add the comment to a CodeTypeDeclaration Members collection.
CodeCommentStatement^ commentStatement = gcnew CodeCommentStatement( comment );

// A C# 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(
    // The text of the comment.
    "This comment was generated from a System.CodeDom.CodeComment",
    // Whether the comment is a comment intended for documentation purposes.
    false );

// Create a CodeCommentStatement that contains the comment, in order
// to add the comment to a CodeTypeDeclaration Members collection.
CodeCommentStatement commentStatement = new CodeCommentStatement( comment );

// A C# 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.
     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

설명

CodeComment 한 줄 주석을 나타내는 데 사용할 수 있습니다.

CodeCommentStatement CodeComment 포함할 수 있으며 문 컬렉션 내에서 문으로 처리되고 코드로 생성될 수 있습니다. 여러 줄 주석을 여러 CodeCommentStatement 개체로 나타낼 수 있습니다.

소스 코드에 생성할 수 있는 CodeDOM 그래프에 주석을 포함하려면 CodeCommentStatementCodeComment 추가하고 CodeMemberMethod 문 컬렉션 또는 CodeTypeMember파생된 CodeNamespace 또는 개체의 주석 컬렉션에 추가합니다.

생성자

CodeComment()

CodeComment 클래스의 새 인스턴스를 초기화합니다.

CodeComment(String, Boolean)

지정된 텍스트 및 설명서 주석 플래그를 사용하여 CodeComment 클래스의 새 인스턴스를 초기화합니다.

CodeComment(String)

지정된 텍스트를 내용으로 사용하여 CodeComment 클래스의 새 인스턴스를 초기화합니다.

속성

DocComment

설명이 설명서 주석인지 여부를 나타내는 값을 가져오거나 설정합니다.

Text

주석의 텍스트를 가져오거나 설정합니다.

UserData

현재 개체에 대한 사용자 정의 데이터를 가져옵니다.

(다음에서 상속됨 CodeObject)

메서드

Equals(Object)

지정된 개체가 현재 개체와 같은지 여부를 확인합니다.

(다음에서 상속됨 Object)
GetHashCode()

기본 해시 함수로 사용됩니다.

(다음에서 상속됨 Object)
GetType()

현재 인스턴스의 Type 가져옵니다.

(다음에서 상속됨 Object)
MemberwiseClone()

현재 Object단순 복사본을 만듭니다.

(다음에서 상속됨 Object)
ToString()

현재 개체를 나타내는 문자열을 반환합니다.

(다음에서 상속됨 Object)

적용 대상

추가 정보