다음을 통해 공유


CodeVariableDeclarationStatement 클래스

정의

변수 선언을 나타냅니다.

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

예제

이 예제에서는 를 사용하여 CodeVariableDeclarationStatement 변수를 선언하는 방법을 보여 줍니다.

// Type of the variable to declare.
// Name of the variable to declare.
// Optional initExpression parameter initializes the variable.
CodeVariableDeclarationStatement^ variableDeclaration = gcnew CodeVariableDeclarationStatement( String::typeid,"TestString",gcnew CodePrimitiveExpression( "Testing" ) );

// A C# code generator produces the following source code for the preceeding example code:
// string TestString = "Testing";
CodeVariableDeclarationStatement variableDeclaration = new CodeVariableDeclarationStatement(
    // Type of the variable to declare.
    typeof(string),
    // Name of the variable to declare.
    "TestString",
    // Optional initExpression parameter initializes the variable.
    new CodePrimitiveExpression("Testing") );

// A C# code generator produces the following source code for the preceeding example code:

// string TestString = "Testing";
 Dim variableDeclaration As New CodeVariableDeclarationStatement( _
    GetType(String), "TestString", _ 
    New CodePrimitiveExpression("Testing")) 

' The first two parameters indicate the type and name of the variable to declare.
' The optional initExpression parameter initializes the variable.

' A Visual Basic code generator produces the following source code for the preceeding example code:

' Dim TestString As String = "Testing"

설명

CodeVariableDeclarationStatement 변수를 선언하는 코드를 나타내는 데 사용할 수 있습니다.

속성은 Type 선언할 변수의 형식을 지정합니다. 속성은 Name 선언할 변수의 이름을 지정합니다. 속성은 InitExpression 선택 사항이며, 변수를 만든 후 변수에 할당할 초기화 식을 지정합니다.

참고

일부 언어는 변수 선언 후에 별도의 할당 문을 만들어 선택적 변수 초기화 식을 구현할 수 있습니다.

생성자

CodeVariableDeclarationStatement()

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

CodeVariableDeclarationStatement(CodeTypeReference, String)

지정된 형식 및 이름을 사용하여 CodeVariableDeclarationStatement 클래스의 새 인스턴스를 초기화합니다.

CodeVariableDeclarationStatement(CodeTypeReference, String, CodeExpression)

지정된 데이터 형식, 변수 이름 및 초기화 식을 사용하여 CodeVariableDeclarationStatement 클래스의 새 인스턴스를 초기화합니다.

CodeVariableDeclarationStatement(String, String)

지정된 데이터 형식 이름 및 변수 이름을 사용하여 CodeVariableDeclarationStatement 클래스의 새 인스턴스를 초기화합니다.

CodeVariableDeclarationStatement(String, String, CodeExpression)

지정된 데이터 형식, 변수 이름 및 초기화 식을 사용하여 CodeVariableDeclarationStatement 클래스의 새 인스턴스를 초기화합니다.

CodeVariableDeclarationStatement(Type, String)

지정된 데이터 형식 및 변수 이름을 사용하여 CodeVariableDeclarationStatement 클래스의 새 인스턴스를 초기화합니다.

CodeVariableDeclarationStatement(Type, String, CodeExpression)

지정된 데이터 형식, 변수 이름 및 초기화 식을 사용하여 CodeVariableDeclarationStatement 클래스의 새 인스턴스를 초기화합니다.

속성

EndDirectives

끝 지시문이 포함된 CodeDirectiveCollection 개체를 가져옵니다.

(다음에서 상속됨 CodeStatement)
InitExpression

변수의 초기화 식을 가져오거나 설정합니다.

LinePragma

코드 문이 있는 줄을 가져오거나 설정합니다.

(다음에서 상속됨 CodeStatement)
Name

변수의 이름을 가져오거나 설정합니다.

StartDirectives

시작 지시문이 포함된 CodeDirectiveCollection 개체를 가져옵니다.

(다음에서 상속됨 CodeStatement)
Type

변수의 데이터 형식을 가져오거나 설정합니다.

UserData

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

(다음에서 상속됨 CodeObject)

메서드

Equals(Object)

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

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

기본 해시 함수로 작동합니다.

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

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

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

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

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

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

(다음에서 상속됨 Object)

적용 대상