CodeSnippetExpression 클래스
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
리터럴 문을 나타냅니다.
public ref class CodeSnippetExpression : System::CodeDom::CodeExpression
public class CodeSnippetExpression : System.CodeDom.CodeExpression
[System.Runtime.InteropServices.ClassInterface(System.Runtime.InteropServices.ClassInterfaceType.AutoDispatch)]
[System.Runtime.InteropServices.ComVisible(true)]
[System.Serializable]
public class CodeSnippetExpression : System.CodeDom.CodeExpression
type CodeSnippetExpression = class
inherit CodeExpression
[<System.Runtime.InteropServices.ClassInterface(System.Runtime.InteropServices.ClassInterfaceType.AutoDispatch)>]
[<System.Runtime.InteropServices.ComVisible(true)>]
[<System.Serializable>]
type CodeSnippetExpression = class
inherit CodeExpression
Public Class CodeSnippetExpression
Inherits CodeExpression
- 상속
- 특성
예제
다음 코드 예제에서는 리터럴 코드 조각을 사용 하 여 클래스의 CodeSnippetExpression instance 만드는 방법을 보여 줍니다.
// Creates a CodeSnippetExpression that represents a literal string that
// can be used as an expression in a CodeDOM graph.
CodeSnippetExpression^ literalExpression =
gcnew CodeSnippetExpression( "Literal expression" );
// Creates a CodeSnippetExpression that represents a literal string that
// can be used as an expression in a CodeDOM graph.
CodeSnippetExpression literalExpression =
new CodeSnippetExpression("Literal expression");
' Creates a CodeSnippetExpression that represents a literal string that
' can be used as an expression in a CodeDOM graph.
Dim literalExpression As New CodeSnippetExpression("Literal expression")
설명
리터럴 식은 식의 코드를 리터럴 코드 조각으로 저장합니다. CodeDOM은 리터럴 코드 조각을 변환하지 않습니다. 리터럴 코드 조각은 그대로 저장되고 출력됩니다. 개발자가 이미 대상 언어에 있는 코드를 캡슐화할 수 있도록 리터럴 코드를 포함하는 CodeDOM 개체가 제공됩니다.
속성에는 이 Value 코드 조각 식에 대한 리터럴 코드가 포함되어 있습니다.
생성자
CodeSnippetExpression() |
CodeSnippetExpression 클래스의 새 인스턴스를 초기화합니다. |
CodeSnippetExpression(String) |
지정된 리터럴 식을 사용하여 CodeSnippetExpression 클래스의 새 인스턴스를 초기화합니다. |
속성
UserData |
현재 개체에 대해 사용자 정의 가능한 데이터를 가져옵니다. (다음에서 상속됨 CodeObject) |
Value |
코드의 리터럴 문자열을 가져오거나 설정합니다. |
메서드
Equals(Object) |
지정된 개체가 현재 개체와 같은지 확인합니다. (다음에서 상속됨 Object) |
GetHashCode() |
기본 해시 함수로 작동합니다. (다음에서 상속됨 Object) |
GetType() |
현재 인스턴스의 Type을 가져옵니다. (다음에서 상속됨 Object) |
MemberwiseClone() |
현재 Object의 단순 복사본을 만듭니다. (다음에서 상속됨 Object) |
ToString() |
현재 개체를 나타내는 문자열을 반환합니다. (다음에서 상속됨 Object) |
적용 대상
.NET