Cosmos/source/Indy.IL2CPU/CustomImplementation/System/Runtime/CompilerServices/RuntimeHelpers.cs
mterwoord_cp 0af081617d
2007-09-22 11:03:41 +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);
}
}