mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-22 22:09:12 +00:00
22 lines
652 B
C#
22 lines
652 B
C#
using System;
|
|
using Cosmos.IL2CPU.Plugs;
|
|
using Cosmos.IL2CPU.Plugs.Assemblers.Array;
|
|
|
|
namespace Cosmos.Core.Plugs.Asm
|
|
{
|
|
[Plug(Target = typeof(Array))]
|
|
public class ArrayImpl
|
|
{
|
|
[PlugMethod(Assembler = typeof(ArrayGetLengthAsm))]
|
|
public static int get_Length(Array aThis)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
[PlugMethod(Assembler = typeof(ArrayInternalCopyAsm))]
|
|
public static void Copy(Array sourceArray, int sourceIndex, Array destinationArray, int destinationIndex, int length, bool reliable)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
}
|