Delen via


PositionTagged<T>.Implicit Operator

Definition

Overloads

Implicit(Tuple<T,Int32> to PositionTagged<T>)
Implicit(PositionTagged<T> to T)

This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Converts the value to a PositionTagged<T> object.

Implicit(Tuple<T,Int32> to PositionTagged<T>)

public static implicit operator System.Web.WebPages.Instrumentation.PositionTagged<T> ((T,int) value);
static member op_Implicit : ('T * int) -> System.Web.WebPages.Instrumentation.PositionTagged<'T>
Public Shared Widening Operator CType (value As Tuple(Of T, Integer)) As PositionTagged(Of T)

Parameters

value
Tuple<T,Int32>

Returns

Applies to

Implicit(PositionTagged<T> to T)

This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Converts the value to a PositionTagged<T> object.

public static implicit operator T (System.Web.WebPages.Instrumentation.PositionTagged<T> value);
static member op_Implicit : System.Web.WebPages.Instrumentation.PositionTagged<'T> -> 'T
Public Shared Widening Operator CType (value As PositionTagged(Of T)) As T

Parameters

value
PositionTagged<T>

The object to convert.

Returns

T

The PositionTagged<T> that represents the converted value.

Applies to