共用方式為


ReportExpression<T>.Explicit Operator

Definition

Converts the value of a ReportExpression<T> to another type.

Overloads

Explicit(ReportExpression<T> to T)

Converts the value of a ReportExpression<T> to an object of type T.

Explicit(ReportExpression<T> to String)

Converts the value of a ReportExpression<T> to a string.

Explicit(ReportExpression<T> to T)

Converts the value of a ReportExpression<T> to an object of type T.

public:
 static explicit operator T(Microsoft::ReportingServices::RdlObjectModel::ReportExpression<T> value);
public static explicit operator T (Microsoft.ReportingServices.RdlObjectModel.ReportExpression<T> value);
static member op_Explicit : Microsoft.ReportingServices.RdlObjectModel.ReportExpression<'T (requires 'T : struct)> -> 'T
Public Shared Narrowing Operator CType (value As ReportExpression(Of T)) As T

Parameters

Returns

T

An object of type T.

Remarks

The equivalent method for this operator is ?qualifyHint=True&autoUpgrade=False

Applies to

Explicit(ReportExpression<T> to String)

Converts the value of a ReportExpression<T> to a string.

public:
 static explicit operator System::String ^(Microsoft::ReportingServices::RdlObjectModel::ReportExpression<T> value);
public static explicit operator string (Microsoft.ReportingServices.RdlObjectModel.ReportExpression<T> value);
static member op_Explicit : Microsoft.ReportingServices.RdlObjectModel.ReportExpression<'T (requires 'T : struct)> -> string
Public Shared Narrowing Operator CType (value As ReportExpression(Of T)) As String

Parameters

Returns

A string value of the ReportExpression<T> object.

Remarks

The equivalent method for this operator is ?qualifyHint=True&autoUpgrade=False

Applies to