mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-31 13:21:05 +00:00
19 lines
No EOL
697 B
C#
19 lines
No EOL
697 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(Assembler = 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);
|
|
// }
|
|
// }
|
|
//} |