ByteIReadOnlyListExtensions.CopyTo Method
Overloads
CopyTo(IReadOnlyList<Byte>, Span<Byte>, Int32)
Copies the contents of a read-only list to a span, starting at the specified offset in the destination.
public static void CopyTo(this IReadOnlyList<Byte> bytes, Span<Byte> destination, int start);
View source
Parameters
CopyTo(IReadOnlyList<Byte>, Span<Byte>)
Copies the contents of a read-only list to a span.
public static void CopyTo(this IReadOnlyList<Byte> bytes, Span<Byte> destination);
View source
Parameters