Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Added detail to Memory<T>.ToArray
  • Loading branch information
Ron Petrusha committed Nov 9, 2018
commit b527a5dea1b66b0d08c1110e1df475204c102bee
4 changes: 3 additions & 1 deletion xml/System/Memory`1.xml
Original file line number Diff line number Diff line change
Expand Up @@ -573,7 +573,9 @@ The garbage collector will not move the memory until the returned <xref:System.B
<remarks>
<format type="text/markdown"><![CDATA[

Because a call to the <xref="System.Memory%601.ToArray%2A> method performs a heap allocation, it should generally be avoided. However, it is sometimes necessary to take advantage of functionality that is only available for arrays.
Because a call to the <xref=System.Memory%601.ToArray%2A> method performs a heap allocation, it should generally be avoided. However, it is sometimes necessary to take advantage of functionality that is only available for arrays.

Each call to the `ToArray` method returns a new array.

]]></format>
</remarks>
Expand Down