27 lines
795 B
C#
27 lines
795 B
C#
using System;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace Unity.Collections.LowLevel.Unsafe
|
|
{
|
|
// Token: 0x02000036 RID: 54
|
|
[Token(Token = "0x2000036")]
|
|
public static class NativeSliceUnsafeUtility
|
|
{
|
|
// Token: 0x06000075 RID: 117 RVA: 0x00002052 File Offset: 0x00000252
|
|
[Token(Token = "0x6000075")]
|
|
[Address(RVA = "0xE78BF0", Offset = "0xE77BF0", VA = "0x180E78BF0")]
|
|
public unsafe static void* GetUnsafePtr<T>(this NativeSlice<T> nativeSlice) where T : struct
|
|
{
|
|
return null;
|
|
}
|
|
|
|
// Token: 0x06000076 RID: 118 RVA: 0x00002052 File Offset: 0x00000252
|
|
[Token(Token = "0x6000076")]
|
|
[Address(RVA = "0xE78BF0", Offset = "0xE77BF0", VA = "0x180E78BF0")]
|
|
public unsafe static void* GetUnsafeReadOnlyPtr<T>(this NativeSlice<T> nativeSlice) where T : struct
|
|
{
|
|
return null;
|
|
}
|
|
}
|
|
}
|