Expression.Empty Metodo

Definizione

Crea un'espressione vuota di tipo Void.

public:
 static System::Linq::Expressions::DefaultExpression ^ Empty();
public static System.Linq.Expressions.DefaultExpression Empty ();
static member Empty : unit -> System.Linq.Expressions.DefaultExpression
Public Shared Function Empty () As DefaultExpression

Restituisce

Oggetto DefaultExpression la cui proprietà NodeType è uguale a Default e la cui proprietà Type è impostata su Void.

Esempio

Nell'esempio di codice seguente viene illustrato come creare un'espressione vuota e aggiungerla a un'espressione a blocchi.

// Add the following directive to your file:
// using System.Linq.Expressions;

// This statement creates an empty expression.
DefaultExpression emptyExpr = Expression.Empty();

// The empty expression can be used where an expression is expected, but no action is desired.
// For example, you can use the empty expression as the last expression in the block expression.
// In this case the block expression's return value is void.
var emptyBlock = Expression.Block(emptyExpr);
' Add the following directive to your file:
' Imports System.Linq.Expressions 

' This statement creates an empty expression.
Dim emptyExpr As DefaultExpression = Expression.Empty()

' An empty expression can be used where an expression is expected but no action is desired.
' For example, you can use an empty expression as the last expression in a block expression.
' In this case, the block expression's return value is void.
Dim emptyBlock = Expression.Block(emptyExpr)

Commenti

È possibile usare un'espressione vuota in cui è prevista un'espressione, ma non è richiesta alcuna azione. Ad esempio, è possibile usare un'espressione vuota come ultima espressione in un'espressione a blocchi. In questo caso, il valore restituito dell'espressione di blocco è void.

Si applica a