共用方式為


IVariableDeclaratorOperation 介面

定義

表示單一變數宣告子和初始化運算式。

public interface class IVariableDeclaratorOperation : Microsoft::CodeAnalysis::IOperation
public interface IVariableDeclaratorOperation : Microsoft.CodeAnalysis.IOperation
type IVariableDeclaratorOperation = interface
    interface IOperation
Public Interface IVariableDeclaratorOperation
Implements IOperation
實作

備註

在 VB 中,這個節點的初始化運算式只會用於明確的陣列界限初始化運算式。 此節點會對應至 C# 中的 VariableDeclaratorSyntax 和 VB 中的 ModifiedIdentifierSyntax。

此節點與下列作業類型相關聯:

此介面會保留供其相關聯的 API 實作使用。 我們保留未來變更它的權利。

屬性

ChildOperations

這個作業的子作業可列舉。

(繼承來源 IOperation)
Children
已淘汰.

此作業的子作業陣列。 已被取代:請使用 ChildOperations

(繼承來源 IOperation)
ConstantValue

如果作業是評估為常數值的運算式, HasValue 則為 true,且 Value 為運算式的值。 否則為 HasValue false。

(繼承來源 IOperation)
IgnoredArguments

編譯器忽略錯誤案例中提供給宣告子的其他引數。 這只適用于 VariableDeclaratorSyntax 上 DeclaredArgumentSyntax 節點的 C# 案例。

Initializer

變數的選擇性初始化運算式。

IsImplicit

如果編譯器代碼產生 /隱含計算,請將 設定為 True

(繼承來源 IOperation)
Kind

識別作業的類型。

(繼承來源 IOperation)
Language

IOperation 的來來源語言。 可能的值是 CSharpVisualBasic

(繼承來源 IOperation)
Parent

具有此作業作為子系的 IOperation。 根目錄的 Null。

(繼承來源 IOperation)
SemanticModel

用來產生這項作業的選擇性語意模型。 針對從來源產生的作業,使用 GetOperation(SyntaxNode, CancellationToken) API 和對分析器的作業回呼產生非 Null。 在 內的作業為 ControlFlowGraph Null。

(繼承來源 IOperation)
Symbol

此變數宣告所宣告的符號

Syntax

分析以產生作業的語法。

(繼承來源 IOperation)
Type

作業的結果類型,如果作業不會產生結果,則為 null。

(繼承來源 IOperation)

方法

Accept(OperationVisitor)

表示單一變數宣告子和初始化運算式。

(繼承來源 IOperation)
Accept<TArgument,TResult>(OperationVisitor<TArgument,TResult>, TArgument)

表示單一變數宣告子和初始化運算式。

(繼承來源 IOperation)

擴充方法

Descendants(IOperation)

傳回評估順序中指定 operation 的所有子代作業。

DescendantsAndSelf(IOperation)

傳回指定 operation 的所有子代作業,包括評估順序中的指定 operation

GetVariableInitializer(IVariableDeclaratorOperation)

取得指定 declarationOperation 之 的變數初始化運算式,檢查如果單一變數初始化運算式為 Null,則檢查是否有父初始化運算式。

適用於