PositionTagged<T> Implicit Conversion (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.
Namespace: System.Web.WebPages.Instrumentation
Assembly: System.Web.WebPages (in System.Web.WebPages.dll)
Syntax
'Declaration
Public Shared Widening Operator CType ( _
value As PositionTagged(Of T) _
) As T
'Usage
Dim input As PositionTagged(Of T)
Dim output As T
output = CType(input, T)
public static implicit operator T (
PositionTagged<T> value
)
static implicit operator T (
PositionTagged<T>^ value
)
JScript supports the use of custom casts, but not the declaration of new ones.
Parameters
- value
Type: System.Web.WebPages.Instrumentation.PositionTagged<T>
The object to convert.
Return Value
Type: T
The PositionTagged<T> that represents the converted value.