mirror of
https://github.com/danbulant/Cosmos
synced 2026-06-12 19:21:40 +00:00
19 lines
551 B
C#
19 lines
551 B
C#
using System;
|
|
using IL2CPU.API.Attribs;
|
|
|
|
namespace Cosmos.Core_Plugs.System
|
|
{
|
|
[Plug(Target=typeof(GC))]
|
|
public static class GCImpl
|
|
{
|
|
public static void _SuppressFinalize(object o) {
|
|
// not implemented yet
|
|
}
|
|
|
|
[PlugMethod(Signature = "System_Array__System_GC_AllocateNewArray_System_IntPtr__System_Int32__System_GC_GC_ALLOC_FLAGS_")]
|
|
public static unsafe Array AllocateNewArray(int* aTypeHandle, int aLength, uint aGCFlags)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
}
|