ArrayExtensions.IsCovariant Method
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.
Overloads
IsCovariant<T>(T[,,]) |
Checks whether or not a given |
IsCovariant<T>(T[,]) |
Checks whether or not a given |
IsCovariant<T>(T[]) |
Checks whether or not a given |
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.