21 lines
397 B
C#
21 lines
397 B
C#
using System;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace Newtonsoft.Json
|
|
{
|
|
// Token: 0x0200000E RID: 14
|
|
[Token(Token = "0x200000E")]
|
|
public interface IArrayPool<T>
|
|
{
|
|
// Token: 0x06000009 RID: 9
|
|
[Token(Token = "0x6000009")]
|
|
[Address(Slot = "0")]
|
|
T[] Rent(int minimumLength);
|
|
|
|
// Token: 0x0600000A RID: 10
|
|
[Token(Token = "0x600000A")]
|
|
[Address(Slot = "1")]
|
|
void Return(T[] array);
|
|
}
|
|
}
|