Modifier

Partager via


ArrayExtensions.IsCovariant Method

Definition

Overloads

IsCovariant<T>(T[,,])

Checks whether or not a given T array is covariant.

IsCovariant<T>(T[,])

Checks whether or not a given T array is covariant.

IsCovariant<T>(T[])

Checks whether or not a given T array is covariant.

IsCovariant<T>(T[,,])

Checks whether or not a given T array is covariant.

public static bool IsCovariant<T> (this T[,,] array);
static member IsCovariant : 'T[,,] -> bool
<Extension()>
Public Function IsCovariant(Of T) (array As T(,,)) As Boolean

Type Parameters

T

The type of items in the input T array instance.

Parameters

array
T[,,]

The input T array instance.

Returns

Whether or not array is covariant.

Applies to

IsCovariant<T>(T[,])

Checks whether or not a given T array is covariant.

public static bool IsCovariant<T> (this T[,] array);
static member IsCovariant : 'T[,] -> bool
<Extension()>
Public Function IsCovariant(Of T) (array As T(,)) As Boolean

Type Parameters

T

The type of items in the input T array instance.

Parameters

array
T[,]

The input T array instance.

Returns

Whether or not array is covariant.

Applies to

IsCovariant<T>(T[])

Checks whether or not a given T array is covariant.

public static bool IsCovariant<T> (this T[] array);
static member IsCovariant : 'T[] -> bool
<Extension()>
Public Function IsCovariant(Of T) (array As T()) As Boolean

Type Parameters

T

The type of items in the input T array instance.

Parameters

array
T[]

The input T array instance.

Returns

Whether or not array is covariant.

Applies to