This commit is contained in:
niko
2026-04-12 16:51:38 +02:00
parent 1b6f6d81d0
commit c12fbe3fc6
17828 changed files with 2994770 additions and 0 deletions
+33
View File
@@ -0,0 +1,33 @@
using System;
using Cpp2IlInjected;
namespace Newtonsoft.Json.Utilities
{
// Token: 0x02000055 RID: 85
[Token(Token = "0x2000055")]
internal static class BufferUtils
{
// Token: 0x060001C9 RID: 457 RVA: 0x00002052 File Offset: 0x00000252
[Token(Token = "0x60001C9")]
[Address(RVA = "0x2A54910", Offset = "0x2A53910", VA = "0x182A54910")]
public static char[] RentBuffer(IArrayPool<char> bufferPool, int minSize)
{
return null;
}
// Token: 0x060001CA RID: 458 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60001CA")]
[Address(RVA = "0x2A54980", Offset = "0x2A53980", VA = "0x182A54980")]
public static void ReturnBuffer(IArrayPool<char> bufferPool, char[] buffer)
{
}
// Token: 0x060001CB RID: 459 RVA: 0x00002052 File Offset: 0x00000252
[Token(Token = "0x60001CB")]
[Address(RVA = "0x2A54870", Offset = "0x2A53870", VA = "0x182A54870")]
public static char[] EnsureBufferSize(IArrayPool<char> bufferPool, int size, char[] buffer)
{
return null;
}
}
}