9 lines
111 B
C#
9 lines
111 B
C#
namespace System.Buffers;
|
|
|
|
public interface IPinnable
|
|
{
|
|
MemoryHandle Pin(int elementIndex);
|
|
|
|
void Unpin();
|
|
}
|