mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-22 13:58:47 +00:00
11 lines
No EOL
448 B
C#
11 lines
No EOL
448 B
C#
using System;
|
|
using System.Linq;
|
|
using System.Runtime.InteropServices;
|
|
|
|
namespace Indy.IL2CPU.CustomImplementation.CompilerServices {
|
|
public class RuntimeHelpers {
|
|
[MethodAlias(Name = "System_Void___System_Runtime_CompilerServices_RuntimeHelpers_InitializeArray___System_Array__System_RuntimeFieldHandle___")]
|
|
[DllImport("test.dll")]
|
|
public static extern void InitializeArray(Array aArray, RuntimeFieldHandle aFieldHandle);
|
|
}
|
|
} |