Span<T>.Implicit Operator
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
Implicit(ArraySegment<T> to Span<T>) |
Defines an implicit conversion of an ArraySegment<T> to a Span<T>. |
Implicit(Span<T> to ReadOnlySpan<T>) |
Defines an implicit conversion of a Span<T> to a ReadOnlySpan<T>. |
Implicit(T[] to Span<T>) |
Defines an implicit conversion of an array to a Span<T>. |
Implicit(ArraySegment<T> to Span<T>)
- Source:
- Span.cs
- Source:
- Span.cs
- Source:
- Span.cs
Defines an implicit conversion of an ArraySegment<T> to a Span<T>.
public:
static operator Span<T>(ArraySegment<T> segment);
public static implicit operator Span<T> (ArraySegment<T> segment);
static member op_Implicit : ArraySegment<'T> -> Span<'T>
Public Shared Widening Operator CType (segment As ArraySegment(Of T)) As Span(Of T)
Parameters
- segment
- ArraySegment<T>
The array segment to be converted to a Span<T>.
Returns
A span that corresponds to the array segment.
Applies to
Implicit(Span<T> to ReadOnlySpan<T>)
- Source:
- Span.cs
- Source:
- Span.cs
- Source:
- Span.cs
Defines an implicit conversion of a Span<T> to a ReadOnlySpan<T>.
public:
static operator ReadOnlySpan<T>(Span<T> span);
public static implicit operator ReadOnlySpan<T> (Span<T> span);
static member op_Implicit : Span<'T> -> ReadOnlySpan<'T>
Public Shared Widening Operator CType (span As Span(Of T)) As ReadOnlySpan(Of T)
Parameters
- span
- Span<T>
The object to convert to a ReadOnlySpan<T>.
Returns
A read-only span that corresponds to the current instance.
Applies to
Implicit(T[] to Span<T>)
- Source:
- Span.cs
- Source:
- Span.cs
- Source:
- Span.cs
Defines an implicit conversion of an array to a Span<T>.
public:
static operator Span<T>(cli::array <T> ^ array);
public static implicit operator Span<T> (T[]? array);
public static implicit operator Span<T> (T[] array);
static member op_Implicit : 'T[] -> Span<'T>
Public Shared Widening Operator CType (array As T()) As Span(Of T)
Parameters
- array
- T[]
The array to convert to a Span<T>.
Returns
The span that corresponds to array
.