Cosmos/source/Cosmos.Core_Asm/BufferImpl.cs
2017-12-10 15:57:12 +00:00

15 lines
377 B
C#

using System;
using IL2CPU.API.Attribs;
namespace Cosmos.Core_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();
}
}
}