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