ArraySegment<T>.Implicit(T[] to ArraySegment<T>) Operador
Definição
Define uma conversão implícita de uma matriz de tipo T para um segmento de matriz de tipo T.Defines an implicit conversion of an array of type T to an array segment of type T.
public:
static operator ArraySegment<T>(cli::array <T> ^ array);
public static implicit operator ArraySegment<T> (T[] array);
static member op_Implicit : 'T[] -> ArraySegment<'T>
Public Shared Widening Operator CType (array As T()) As ArraySegment(Of T)
Parâmetros
- array
- T[]
A matriz a ser convertida.The array to convert.
Retornos
Uma representação de segmento da matriz.An array segment representation of the array.