Cosmos/source/Cosmos.Core_Asm/BufferImpl.cs
2017-07-03 09:51:51 -05:00

15 lines
387 B
C#

using System;
using Cosmos.IL2CPU.Plugs;
namespace Cosmos.Core.Plugs_Asm
{
[Plug(Target = typeof(Buffer))]
public class BufferImpl
{
[PlugMethod(Assembler = typeof(BufferBlockCopyAsm))]
public static void BlockCopy(Array src, int srcOffset, Array dst, int dstOffset, int count)
{
throw new NotImplementedException();
}
}
}