Cosmos/source/Cosmos.Core_Asm/BufferImpl.cs

15 lines
384 B
C#

using System;
using Cosmos.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();
}
}
}