ReportExpression<T>.Implicit Operator
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Converts the value of a type to a ReportExpression<T>.
Overloads
Implicit(Nullable<T> to ReportExpression<T>) |
Converts a Nullable<T> object to a ReportExpression<T>. |
Implicit(T to ReportExpression<T>) |
Converts an object of type |
Implicit(Nullable<T> to ReportExpression<T>)
Converts a Nullable<T> object to a ReportExpression<T>.
public:
static operator Microsoft::ReportingServices::RdlObjectModel::ReportExpression<T>(Nullable<T> value);
public static implicit operator Microsoft.ReportingServices.RdlObjectModel.ReportExpression<T> (T? value);
static member op_Implicit : Nullable<'T (requires 'T : struct)> -> Microsoft.ReportingServices.RdlObjectModel.ReportExpression<'T (requires 'T : struct)>
Public Shared Widening Operator CType (value As Nullable(Of T)) As ReportExpression(Of T)
Parameters
- value
- Nullable<T>
A Nullable<T> object.
Returns
A ReportExpression<T> object.
Remarks
The equivalent method for this operator is ?qualifyHint=True&autoUpgrade=False
Applies to
Implicit(T to ReportExpression<T>)
Converts an object of type T
to a ReportExpression<T>.
public:
static operator Microsoft::ReportingServices::RdlObjectModel::ReportExpression<T>(T value);
public static implicit operator Microsoft.ReportingServices.RdlObjectModel.ReportExpression<T> (T value);
static member op_Implicit : 'T -> Microsoft.ReportingServices.RdlObjectModel.ReportExpression<'T (requires 'T : struct)>
Public Shared Widening Operator CType (value As T) As ReportExpression(Of T)
Parameters
- value
- T
An object of type T
.
Returns
A ReportExpression<T> object.
Remarks
The equivalent method for this operator is ?qualifyHint=True&autoUpgrade=False