7 lines
105 B
C#
7 lines
105 B
C#
namespace System.Buffers;
|
|
|
|
public interface IMemoryOwner<T> : IDisposable
|
|
{
|
|
Memory<T> Memory { get; }
|
|
}
|