Cosmos/source/Indy.IL2CPU.IL.X86/CustomImplementations/System/Buffer.cs
2007-12-31 12:00:26 +00:00

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);
}
}
}