mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-20 21:08:51 +00:00
19 lines
No EOL
623 B
C#
19 lines
No EOL
623 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using Indy.IL2CPU.Plugs;
|
|
|
|
namespace Indy.IL2CPU.IL.X86.CustomImplementations.System {
|
|
[Plug(Target = typeof(global::System.Buffer))]
|
|
public class Buffer {
|
|
|
|
[PlugMethod(MethodAssembler = typeof(Assemblers.Buffer_BlockCopy))]
|
|
public static void BlockCopy(Array src, int srcOffset, Array dst, int dstOffset, int count) {
|
|
}
|
|
|
|
public static void InternalBlockCopy(Array src, int srcOffset, Array dst, int dstOffset, int count) {
|
|
global::System.Buffer.BlockCopy(src, srcOffset, dst, dstOffset, count);
|
|
}
|
|
}
|
|
} |