Cosmos/source/Indy.IL2CPU/CustomImplementation/CompilerServices/RuntimeHelpers.cs
2007-09-22 09:44:20 +00:00

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);
}
}