Lingua

TaskItem<T>.Implicit Operator

Definition

Overloads

Name Description
Implicit(TaskItem<T> to T)

Implicitly converts a TaskItem<T> to its strongly-typed value.

Implicit(T to TaskItem<T>)

Implicit(TaskItem<T> to T)

Source:
TaskItem_T.cs

Implicitly converts a TaskItem<T> to its strongly-typed value.

public:
 static operator T(Microsoft::Build::Framework::TaskItem<T> taskItem);
public static implicit operator T(Microsoft.Build.Framework.TaskItem<T> taskItem);
static member op_Implicit : Microsoft.Build.Framework.TaskItem<'T> -> 'T
Public Shared Widening Operator CType (taskItem As TaskItem(Of T)) As T

Parameters

taskItem
TaskItem<T>

Returns

T

Applies to

Implicit(T to TaskItem<T>)

Source:
TaskItem_T.cs
public:
 static operator Microsoft::Build::Framework::TaskItem<T>(T value);
public static implicit operator Microsoft.Build.Framework.TaskItem<T>(T value);
static member op_Implicit : 'T -> Microsoft.Build.Framework.TaskItem<'T>
Public Shared Widening Operator CType (value As T) As TaskItem(Of T)

Parameters

value
T

Returns

Applies to