Memory<T>.Span Property
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.
Returns a span from the current instance.
public:
property Span<T> Span { Span<T> get(); };
public Span<T> Span { get; }
member this.Span : Span<'T>
Public ReadOnly Property Span As Span(Of T)
Property Value
A span created from the current Memory<T> object.
Remarks
Although it doesn't involve copying, it's costly to access this property. Instead of accessing this property multiple times, it's better to assign its result to a variable (if possible).
Applies to
Colaborați cu noi pe GitHub
Sursa pentru acest conținut poate fi găsită pe GitHub, unde puteți, de asemenea, să creați și să consultați probleme și solicitări de tragere. Pentru mai multe informații, consultați ghidul nostru pentru colaboratori.