8 references to ReadOnlyMemory
System.Private.CoreLib (8)
src\libraries\System.Private.CoreLib\src\System\Memory.cs (1)
187
new
ReadOnlyMemory
<T>(memory._object, memory._index, memory._length);
src\libraries\System.Private.CoreLib\src\System\MemoryExtensions.cs (5)
221
return new
ReadOnlyMemory
<char>(text, 0, text.Length);
243
return new
ReadOnlyMemory
<char>(text, start, text.Length - start);
263
return new
ReadOnlyMemory
<char>(text, actualIndex, text.Length - actualIndex);
292
return new
ReadOnlyMemory
<char>(text, start, length);
312
return new
ReadOnlyMemory
<char>(text, start, length);
src\libraries\System.Private.CoreLib\src\System\ReadOnlyMemory.cs (2)
162
return new
ReadOnlyMemory
<T>(_object, _index + start, _length - start);
186
return new
ReadOnlyMemory
<T>(_object, _index + start, length);