我想将这段代码从C#转换为Powershell。
static unsafe void Copy(IntPtr source, int sourceOffset, IntPtr destination, int destinationOffset, int count)
{
byte* src = (byte*)source + sourceOffset;
byte* dst = (byte*)destination + destinationOffset;
byte* end = dst + count;
while (dst != end)
*dst++ = *src++;
}
我'不知道如何处理Powershell中的指针 有人能帮助我吗?