从c#转换为Powershell - 指针

时间:2018-01-22 14:34:23

标签: c# powershell

我想将这段代码从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中的指针 有人能帮助我吗?

0 个答案:

没有答案