다음을 통해 공유


CodeAttributeArgument 생성자

정의

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

오버로드

CodeAttributeArgument()

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

CodeAttributeArgument(CodeExpression)

지정한 값을 사용하여 CodeAttributeArgument 클래스의 새 인스턴스를 초기화합니다.

CodeAttributeArgument(String, CodeExpression)

지정된 이름과 값을 사용하여 CodeAttributeArgument 클래스의 새 인스턴스를 초기화합니다.

CodeAttributeArgument()

Source:
CodeAttributeArgument.cs
Source:
CodeAttributeArgument.cs
Source:
CodeAttributeArgument.cs

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

public:
 CodeAttributeArgument();
public CodeAttributeArgument ();
Public Sub New ()

적용 대상

CodeAttributeArgument(CodeExpression)

Source:
CodeAttributeArgument.cs
Source:
CodeAttributeArgument.cs
Source:
CodeAttributeArgument.cs

지정한 값을 사용하여 CodeAttributeArgument 클래스의 새 인스턴스를 초기화합니다.

public:
 CodeAttributeArgument(System::CodeDom::CodeExpression ^ value);
public CodeAttributeArgument (System.CodeDom.CodeExpression value);
new System.CodeDom.CodeAttributeArgument : System.CodeDom.CodeExpression -> System.CodeDom.CodeAttributeArgument
Public Sub New (value As CodeExpression)

매개 변수

value
CodeExpression

인수의 값을 나타내는 CodeExpression입니다.

추가 정보

적용 대상

CodeAttributeArgument(String, CodeExpression)

Source:
CodeAttributeArgument.cs
Source:
CodeAttributeArgument.cs
Source:
CodeAttributeArgument.cs

지정된 이름과 값을 사용하여 CodeAttributeArgument 클래스의 새 인스턴스를 초기화합니다.

public:
 CodeAttributeArgument(System::String ^ name, System::CodeDom::CodeExpression ^ value);
public CodeAttributeArgument (string name, System.CodeDom.CodeExpression value);
new System.CodeDom.CodeAttributeArgument : string * System.CodeDom.CodeExpression -> System.CodeDom.CodeAttributeArgument
Public Sub New (name As String, value As CodeExpression)

매개 변수

name
String

인수가 적용되는 특성 속성의 이름입니다.

value
CodeExpression

인수의 값을 나타내는 CodeExpression입니다.

추가 정보

적용 대상