Udostępnij za pośrednictwem


Expression.Constant Metoda

Definicja

Tworzy element ConstantExpression.

Przeciążenia

Constant(Object)

Tworzy właściwość ConstantExpression , która ma ustawioną Value właściwość na określoną wartość.

Constant(Object, Type)

Tworzy obiekt z Value właściwościami ConstantExpression i Type ustawionymi na określone wartości.

Constant(Object)

Źródło:
ConstantExpression.cs
Źródło:
ConstantExpression.cs
Źródło:
ConstantExpression.cs

Tworzy właściwość ConstantExpression , która ma ustawioną Value właściwość na określoną wartość.

public:
 static System::Linq::Expressions::ConstantExpression ^ Constant(System::Object ^ value);
public static System.Linq.Expressions.ConstantExpression Constant (object value);
public static System.Linq.Expressions.ConstantExpression Constant (object? value);
static member Constant : obj -> System.Linq.Expressions.ConstantExpression
Public Shared Function Constant (value As Object) As ConstantExpression

Parametry

value
Object

Element , Object aby ustawić właściwość równą Value .

Zwraca

WłaściwośćConstantExpression, która ma właściwość równą ConstantNodeType i Value właściwość ustawioną na określoną wartość.

Przykłady

W poniższym przykładzie kodu pokazano, jak utworzyć wyrażenie reprezentujące wartość stałą.

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

// This expression represents a Constant value.
Expression constantExpr = Expression.Constant(5.5);

// Print out the expression.
Console.WriteLine(constantExpr.ToString());

// You can also use variables.
double num = 3.5;
constantExpr = Expression.Constant(num);
Console.WriteLine(constantExpr.ToString());

// This code example produces the following output:
//
// 5.5
// 3.5
' Add the following directive to your file:
' Imports System.Linq.Expressions 

' This expression represents a constant value.
Dim constantExpr As Expression = Expression.Constant(5.5)

' Print the expression.
Console.WriteLine(constantExpr.ToString())

' You can also use variables.
Dim num As Double = 3.5
constantExpr = Expression.Constant(num)
Console.WriteLine(constantExpr.ToString())

' This code example produces the following output:
'
' 5.5
' 3.5

Uwagi

Właściwość Type wynikowej ConstantExpression jest równa typowi value. Jeśli value wartość to null, Type jest równa Object.

Aby reprezentować nullmetodę Constant(Object, Type) , można również użyć metody, za pomocą której można jawnie określić typ.

Dotyczy

Constant(Object, Type)

Źródło:
ConstantExpression.cs
Źródło:
ConstantExpression.cs
Źródło:
ConstantExpression.cs

Tworzy obiekt z Value właściwościami ConstantExpression i Type ustawionymi na określone wartości.

public:
 static System::Linq::Expressions::ConstantExpression ^ Constant(System::Object ^ value, Type ^ type);
public static System.Linq.Expressions.ConstantExpression Constant (object value, Type type);
public static System.Linq.Expressions.ConstantExpression Constant (object? value, Type type);
static member Constant : obj * Type -> System.Linq.Expressions.ConstantExpression
Public Shared Function Constant (value As Object, type As Type) As ConstantExpression

Parametry

value
Object

Element , Object aby ustawić właściwość równą Value .

type
Type

A Type , aby ustawić właściwość równą Type .

Zwraca

WłaściwośćConstantExpression, która ma właściwość równą ConstantNodeType właściwości i i TypeValue ustawioną na określone wartości.

Wyjątki

type to null.

value nie null jest i type nie jest przypisywany z typu dynamicznego value.

Przykłady

Poniższy przykład kodu pokazuje, jak utworzyć wyrażenie, które reprezentuje stałą typu dopuszczalnego do wartości null i ustawić jego wartość na null.

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

// This expression represents a constant value,
// for which you can explicitly specify the type.
// This can be used, for example, for defining constants of a nullable type.
Expression constantExpr = Expression.Constant(
                            null,
                            typeof(double?)
                        );

// Print out the expression.
Console.WriteLine(constantExpr.ToString());

// This code example produces the following output:
//
// null
' Add the following directive to your file:
' Imports System.Linq.Expressions   

' This expression represents a constant value, 
' for which you can explicitly specify the type. 
' This can be used, for example, for defining constants of a nullable type.
Dim constantExpr As Expression = Expression.Constant(
                            Nothing,
                            GetType(Double?)
                        )

' Print the expression.
Console.WriteLine(constantExpr.ToString())

' This code example produces the following output:
'
' null

Uwagi

Ta metoda może być przydatna do reprezentowania wartości typów dopuszczających wartość null.

Dotyczy