Freigeben über


SyntaxGenerator.IfStatement Methode

Definition

Überlädt

IfStatement(SyntaxNode, IEnumerable<SyntaxNode>, SyntaxNode)

Erstellt eine If-Anweisung

IfStatement(SyntaxNode, IEnumerable<SyntaxNode>, IEnumerable<SyntaxNode>)

Erstellt eine If-Anweisung

IfStatement(SyntaxNode, IEnumerable<SyntaxNode>, SyntaxNode)

Quelle:
SyntaxGenerator.cs
Quelle:
SyntaxGenerator.cs
Quelle:
SyntaxGenerator.cs
Quelle:
SyntaxGenerator.cs
Quelle:
SyntaxGenerator.cs
Quelle:
SyntaxGenerator.cs
Quelle:
SyntaxGenerator.cs
Quelle:
SyntaxGenerator.cs
Quelle:
SyntaxGenerator.cs
Quelle:
SyntaxGenerator.cs
Quelle:
SyntaxGenerator.cs
Quelle:
SyntaxGenerator.cs
Quelle:
SyntaxGenerator.cs
Quelle:
SyntaxGenerator.cs
Quelle:
SyntaxGenerator.cs
Quelle:
SyntaxGenerator.cs
Quelle:
SyntaxGenerator.cs
Quelle:
SyntaxGenerator.cs
Quelle:
SyntaxGenerator.cs
Quelle:
SyntaxGenerator.cs
Quelle:
SyntaxGenerator.cs
Quelle:
SyntaxGenerator.cs
Quelle:
SyntaxGenerator.cs
Quelle:
SyntaxGenerator.cs

Erstellt eine If-Anweisung

public:
 Microsoft::CodeAnalysis::SyntaxNode ^ IfStatement(Microsoft::CodeAnalysis::SyntaxNode ^ condition, System::Collections::Generic::IEnumerable<Microsoft::CodeAnalysis::SyntaxNode ^> ^ trueStatements, Microsoft::CodeAnalysis::SyntaxNode ^ falseStatement);
public Microsoft.CodeAnalysis.SyntaxNode IfStatement (Microsoft.CodeAnalysis.SyntaxNode condition, System.Collections.Generic.IEnumerable<Microsoft.CodeAnalysis.SyntaxNode> trueStatements, Microsoft.CodeAnalysis.SyntaxNode falseStatement);
member this.IfStatement : Microsoft.CodeAnalysis.SyntaxNode * seq<Microsoft.CodeAnalysis.SyntaxNode> * Microsoft.CodeAnalysis.SyntaxNode -> Microsoft.CodeAnalysis.SyntaxNode
Public Function IfStatement (condition As SyntaxNode, trueStatements As IEnumerable(Of SyntaxNode), falseStatement As SyntaxNode) As SyntaxNode

Parameter

condition
SyntaxNode

Ein Bedingungsausdruck.

trueStatements
IEnumerable<SyntaxNode>

Die Anweisungen, die ausgeführt werden, wenn die Bedingung wahr ist.

falseStatement
SyntaxNode

Eine einzelne Anweisung, die ausgeführt wird, wenn die Bedingung falsch ist.

Gibt zurück

Gilt für:

IfStatement(SyntaxNode, IEnumerable<SyntaxNode>, IEnumerable<SyntaxNode>)

Quelle:
SyntaxGenerator.cs
Quelle:
SyntaxGenerator.cs
Quelle:
SyntaxGenerator.cs
Quelle:
SyntaxGenerator.cs
Quelle:
SyntaxGenerator.cs
Quelle:
SyntaxGenerator.cs
Quelle:
SyntaxGenerator.cs
Quelle:
SyntaxGenerator.cs
Quelle:
SyntaxGenerator.cs
Quelle:
SyntaxGenerator.cs
Quelle:
SyntaxGenerator.cs
Quelle:
SyntaxGenerator.cs
Quelle:
SyntaxGenerator.cs
Quelle:
SyntaxGenerator.cs
Quelle:
SyntaxGenerator.cs
Quelle:
SyntaxGenerator.cs
Quelle:
SyntaxGenerator.cs
Quelle:
SyntaxGenerator.cs
Quelle:
SyntaxGenerator.cs
Quelle:
SyntaxGenerator.cs
Quelle:
SyntaxGenerator.cs
Quelle:
SyntaxGenerator.cs
Quelle:
SyntaxGenerator.cs
Quelle:
SyntaxGenerator.cs

Erstellt eine If-Anweisung

public abstract Microsoft.CodeAnalysis.SyntaxNode IfStatement (Microsoft.CodeAnalysis.SyntaxNode condition, System.Collections.Generic.IEnumerable<Microsoft.CodeAnalysis.SyntaxNode> trueStatements, System.Collections.Generic.IEnumerable<Microsoft.CodeAnalysis.SyntaxNode> falseStatements = default);
public abstract Microsoft.CodeAnalysis.SyntaxNode IfStatement (Microsoft.CodeAnalysis.SyntaxNode condition, System.Collections.Generic.IEnumerable<Microsoft.CodeAnalysis.SyntaxNode> trueStatements, System.Collections.Generic.IEnumerable<Microsoft.CodeAnalysis.SyntaxNode>? falseStatements = default);
abstract member IfStatement : Microsoft.CodeAnalysis.SyntaxNode * seq<Microsoft.CodeAnalysis.SyntaxNode> * seq<Microsoft.CodeAnalysis.SyntaxNode> -> Microsoft.CodeAnalysis.SyntaxNode
Public MustOverride Function IfStatement (condition As SyntaxNode, trueStatements As IEnumerable(Of SyntaxNode), Optional falseStatements As IEnumerable(Of SyntaxNode) = Nothing) As SyntaxNode

Parameter

condition
SyntaxNode

Ein Bedingungsausdruck.

trueStatements
IEnumerable<SyntaxNode>

Die Anweisungen, die ausgeführt werden, wenn die Bedingung wahr ist.

falseStatements
IEnumerable<SyntaxNode>

Die Anweisungen, die ausgeführt werden, wenn die Bedingung falsch ist.

Gibt zurück

Gilt für: